Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion THIRD-PARTY-LICENSES.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
{
"License": "Apache Software License; CC0 1.0 Universal (CC0 1.0) Public Domain Dedication; DFSG approved; GNU General Public License v3 or later (GPLv3+); Other/Proprietary License",
"Name": "reuse",
"Version": "6.1.2"
"Version": "6.2.0"
},
{
"License": "MIT License",
Expand Down
2 changes: 1 addition & 1 deletion Taskfile.dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ tasks:
cmds:
- |
git ls-files |
grep -Ev "(^|/)(libs|sketch-libraries|assets)/|\.(md|txt|yml|yaml|toml|gitignore|gitmodules)$" |
grep -Ev "(^|/)(libs|sketch-libraries|assets)/|THIRD-PARTY-LICENSES.json|\.(md|txt|yml|yaml|toml|gitignore|gitmodules)$" |
sed 's/ /\\ /g' |
xargs reuse annotate -r --skip-unrecognized --copyright-prefix 'spdx-string-c' --copyright 'ARDUINO SA <http://www.arduino.cc>' --year '2025' --license 'MPL-2.0'
- reuse download --all
Expand Down
1 change: 0 additions & 1 deletion learn-docs/00.uno-q/uno-q.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ author: Karl Söderby
tags: [UNO Q, Overview]
icon: UNO
category: basic
last_revised: 2025/10/01
---

![Arduino UNO Q](assets/uno-q-hero.png)
Expand Down
1 change: 0 additions & 1 deletion learn-docs/01.first-setup/first-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ author: Karl Söderby
tags: [Apps, Bricks, Sketches, Python, SBC]
icon: Settings
category: basic
last_revised: 2025/10/01
---

![Hero Image](assets/first-setup-hero.png)
Expand Down
5 changes: 2 additions & 3 deletions learn-docs/02.apps/apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ author: Karl Söderby
tags: [Apps, Bricks, Sketches, Python]
icon: Group
category: basic
last_revised: 2025/10/01
---

![Apps.](assets/app-hero.png)
Expand Down Expand Up @@ -55,7 +54,7 @@ This function does the following:

The App can also run a **user-defined loop**, using the `user_loop` parameter that receives a function name to be looped:

```arduino
```python
def loop():
global led_state
time.sleep(1)
Expand All @@ -70,7 +69,7 @@ App.run(user_loop=loop)

>**Important Note:** always place the `App.run()` at the very bottom of the `main.py` script, as any code added after will be ignored.

This is used in the [example provided](#understand-the-code-the-blink-example) further down in this tutorial.
This is used in the [example provided](/learn/apps#understand-the-code-the-blink-example) further down in this tutorial.

## Create a New App

Expand Down
1 change: 0 additions & 1 deletion learn-docs/03.bricks/bricks.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ author: Karl Söderby
tags: [Bricks, AI Models]
icon: Brick
category: basic
last_revised: 2025/10/01
---

![Bricks in the Arduino App Lab](assets/brick-hero.png)
Expand Down
1 change: 0 additions & 1 deletion learn-docs/04.ai-models/ai-models.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ author: Karl Söderby
tags: [AI, ML, Models]
icon: AI
category: basic
last_revised: 2025/10/01
---

![AI Models in the Arduino App Lab](assets/ai-hero.png)
Expand Down
1 change: 0 additions & 1 deletion learn-docs/05.examples/examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ author: Karl Söderby
tags: [Examples]
icon: Group
category: basic
last_revised: 2025/10/01
---

In the previous guides, we have gone through:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ author: Karl Söderby
tags: [SBC, Debian, Linux, Terminal]
icon: Computer
category: basic
last_revised: 2025/10/01
---

![UNO Q as a Single Board Computer (SBC)](assets/sbc-hero.png)
Expand Down