You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
***Note: if you are using the board as a Single Board Computer (SBC Mode (Preview) without a host computer), you do not need to install ADB. You can run `arduino-app-cli` directly from the terminal.***
24
-
25
-
The ADB command line tool is supported on MacOS, Windows & Linux. For more specific instructions for your OS, see the sections below.
26
-
27
-
***You can find more information and download the latest version for the tool for all operating systems directly from the [Android SDK Platform Tools](https://developer.android.com/tools/releases/platform-tools#downloads) page.***
28
-
29
-
### MacOS
30
-
31
-
To install the ADB tools on **MacOS**, we can use `homebrew`. Open the terminal and run the following command:
32
-
33
-
```sh
34
-
brew install android-platform-tools
35
-
```
36
-
37
-
To verify the tool is installed, run `adb version`.
38
-
39
-
### Windows
40
-
41
-
To install the ADB tools on **Windows**, we can use `winget`, supported on Windows 11 and on some earlier Windows 10 versions.
42
-
43
-
Open a terminal and run the following:
44
-
45
-
```sh
46
-
winget install Google.PlatformTools
47
-
```
48
-
49
-
To verify the tool is installed, run `adb version`.
50
-
51
-
### Linux
52
-
53
-
To install ADB tools on a **Debian/Ubuntu Linux distribution**, open a terminal and run the following command:
54
-
55
-
```sh
56
-
sudo apt-get install android-sdk-platform-tools
57
-
```
58
-
59
-
To verify the tool is installed, run `adb version`.
21
+
You can also access the board via SSH, which is typically installed on your system by default.
60
22
61
23
## Connect via ADB
62
24
25
+
***To learn more about setting up `adb`, check out the [Connect to UNO Q via ADB](/tutorials/uno-q/adb/) tutorial. This guide will walk you through the installation steps.***
26
+
63
27
1. Connect the UNO Q board to your computer via USB-C.
64
28
2. Run `adb devices` in the terminal. This should list the connected devices.
0 commit comments