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
Copy file name to clipboardExpand all lines: content/hardware/02.uno/boards/uno-q/tutorials/06.adb/adb.md
+16-7Lines changed: 16 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,23 +1,25 @@
1
1
---
2
-
title:
3
-
description:
2
+
title:Connect to UNO Q via ADB
3
+
description:Learn how to connect to the UNO Q's shell via ADB.
4
4
author: Karl Söderby
5
5
tags: [UNO Q, ADB, Linux]
6
6
---
7
7
8
+
The Linux OS running on the [Arduino UNO Q](https://store.arduino.cc/products/uno-q) can be accessed over USB, using a tool called Android Debug Bridge (ADB).
9
+
10
+
ADB is a tool that you install on your computer, where you can access the board's shell and run operations on the system.
11
+
8
12
## Requirements
9
13
10
14
The following hardware is required:
11
15
-[Arduino UNO Q](https://store.arduino.cc/products/uno-q)
12
16
-[USB-C® type cable](https://store.arduino.cc/products/usb-cable2in1-type-c)
13
17
14
-
You will also need to have the following software installed:
18
+
You will also need to have the following software installed on your OS:
***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.***
20
-
21
23
The ADB command line tool is supported on MacOS, Windows & Linux. For more specific instructions for your OS, see the sections below.
22
24
23
25
***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.***
@@ -56,7 +58,7 @@ To verify the tool is installed, run `adb version`.
56
58
57
59
## Connect via ADB
58
60
59
-
1. Connect the UNO Q board to your computer via USB-C.
61
+
1. Connect the UNO Q board to your computer via USB-C®.
60
62
2. Run `adb devices` in the terminal. This should list the connected devices.
@@ -68,4 +70,11 @@ To verify the tool is installed, run `adb version`.
68
70
69
71

70
72
71
-
5. You are now able to run commands via the terminal on your board! To exit from the terminal, simply type `exit`.
73
+
5. You are now able to run commands via the terminal on your board! To exit from the terminal, simply type `exit`.
74
+
75
+
## Summary
76
+
77
+
Connecting via ADB is an easy way to gain access to your board's shell, allowing you to perform actions such as installing packages, editing files and running scripts.
78
+
79
+
The `arduino-app-cli` can also be used directly via the shell, allowing you to launch Apps directly from the command line. You can read more about that in the link below:
80
+
-[Arduino App CLI: Manage Apps from the Command Line](/software/app-lab/tutorials/cli/)
0 commit comments