Skip to content

Commit 8b208af

Browse files
committed
update cli tutorial
1 parent 0673eef commit 8b208af

File tree

1 file changed

+4
-40
lines changed

1 file changed

+4
-40
lines changed

content/software/app-lab/tutorials/03.cli/apps-lab-cli.md

Lines changed: 4 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -15,51 +15,15 @@ The following hardware is required:
1515
- [Arduino UNO Q](https://store.arduino.cc/products/uno-q)
1616
- [USB-C® type cable](https://store.arduino.cc/products/usb-cable2in1-type-c)
1717

18-
You will also need to have the following software installed:
18+
To access the board via `adb` (over USB), you will also need to have the following software installed:
1919
- [Android Debug Bridge](https://developer.android.com/tools/releases/platform-tools)
2020

21-
## Installing ADB (Host Computer)
22-
23-
***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.
6022

6123
## Connect via ADB
6224

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+
6327
1. Connect the UNO Q board to your computer via USB-C.
6428
2. Run `adb devices` in the terminal. This should list the connected devices.
6529

0 commit comments

Comments
 (0)