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/01.user-manual/content.md
+23Lines changed: 23 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -154,6 +154,29 @@ You should now see the red LED of the built-in RGB LED turning on for one second
154
154
155
155
***The LED controlled in this example is driven by the STM32 microcontroller through the Arduino sketch.***
156
156
157
+
### Running an App at Startup
158
+
159
+
You can configure a specific App to launch automatically whenever the UNO Q is powered on. This is useful for standalone projects where the board operates without a computer connection.
160
+
161
+
**Note:** You cannot set a built-in **Example** as the startup app directly from the UI. You must first click **Copy and edit app** from the example or create a new **App** from scratch.
162
+
163
+
1. Open your custom App (or the copy of an example).
164
+
2. Locate the **Run** button in the top right corner.
165
+
3. Click the arrow (▼) next to the Run button to open the menu.
166
+
4. Toggle the **Run at startup** switch to the **ON** position.
167
+
168
+

169
+
170
+
Once configured, a **DEFAULT** badge will appear next to your App's name, indicating it will run automatically upon boot.
171
+
172
+
#### Advanced: Using the CLI
173
+
174
+
Alternatively, you can set the default app using the command line interface (CLI) inside the UNO Q terminal:
175
+
176
+
```bash
177
+
arduino-app-cli properties set default user:<NAME_OF_YOUR_APP>
178
+
```
179
+
157
180
### Arduino IDE (Beta)
158
181
159
182
The Arduino UNO Q is compatible with the standard Arduino IDE, allowing you to program the board using the familiar Arduino language and ecosystem.
0 commit comments