diff --git a/THIRD-PARTY-LICENSES.json b/THIRD-PARTY-LICENSES.json index 5b86554..ba879b0 100644 --- a/THIRD-PARTY-LICENSES.json +++ b/THIRD-PARTY-LICENSES.json @@ -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", diff --git a/Taskfile.dist.yml b/Taskfile.dist.yml index db468ec..12b0666 100644 --- a/Taskfile.dist.yml +++ b/Taskfile.dist.yml @@ -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 ' --year '2025' --license 'MPL-2.0' - reuse download --all diff --git a/learn-docs/00.uno-q/uno-q.md b/learn-docs/00.uno-q/uno-q.md index 2b66e6f..685ecbf 100644 --- a/learn-docs/00.uno-q/uno-q.md +++ b/learn-docs/00.uno-q/uno-q.md @@ -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) diff --git a/learn-docs/01.first-setup/first-setup.md b/learn-docs/01.first-setup/first-setup.md index 011ca59..c9e4ab7 100644 --- a/learn-docs/01.first-setup/first-setup.md +++ b/learn-docs/01.first-setup/first-setup.md @@ -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) diff --git a/learn-docs/02.apps/apps.md b/learn-docs/02.apps/apps.md index 876978b..67436ee 100644 --- a/learn-docs/02.apps/apps.md +++ b/learn-docs/02.apps/apps.md @@ -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) @@ -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) @@ -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 diff --git a/learn-docs/03.bricks/bricks.md b/learn-docs/03.bricks/bricks.md index 3d88b4c..b5fa219 100644 --- a/learn-docs/03.bricks/bricks.md +++ b/learn-docs/03.bricks/bricks.md @@ -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) diff --git a/learn-docs/04.ai-models/ai-models.md b/learn-docs/04.ai-models/ai-models.md index 01c7d8c..a51fa08 100644 --- a/learn-docs/04.ai-models/ai-models.md +++ b/learn-docs/04.ai-models/ai-models.md @@ -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) diff --git a/learn-docs/05.examples/examples.md b/learn-docs/05.examples/examples.md index 99a91ea..41686f5 100644 --- a/learn-docs/05.examples/examples.md +++ b/learn-docs/05.examples/examples.md @@ -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: diff --git a/learn-docs/06.single-board-computer/single-board-computer.md b/learn-docs/06.single-board-computer/single-board-computer.md index 24a0d68..33e98c7 100644 --- a/learn-docs/06.single-board-computer/single-board-computer.md +++ b/learn-docs/06.single-board-computer/single-board-computer.md @@ -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)