Skip to content

Commit 8036cd6

Browse files
authored
Merge branch 'main' into sync/taddy/opta-expansion-limit-update
2 parents d7b237a + 13aa2aa commit 8036cd6

File tree

284 files changed

+3659
-2041
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

284 files changed

+3659
-2041
lines changed
Loading
Loading

content/arduino-cloud/02.hardware/00.cloud-agent/cloud-agent.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ The source code for the Cloud Agent lives [in this GitHub repository](https://gi
3030
## Troubleshooting
3131

3232
If you are having issues with the Cloud Agent, you can visit the link below:
33-
- [Arduino Help Center - Create Agent](https://support.arduino.cc/hc/en-us/articles/360014869820-Install-the-Arduino-Create-Agent)
33+
- [Arduino Help Center - Create Agent](https://support.arduino.cc/hc/en-us/articles/360014869820-Install-the-Arduino-Cloud-Agent)

content/hardware/01.mkr/01.boards/mkr-wan-1310/tutorials/lora-button-press/lora-button-press.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -199,12 +199,12 @@ void loop() {
199199
while (LoRa.available()) {
200200
contents += (char)LoRa.read();
201201
}
202-
202+
203+
Serial.println(contents);
203204
// print RSSI of packet
204205
Serial.print("' with RSSI ");
205206
Serial.println(LoRa.packetRssi());
206-
Serial.println(contents);
207-
207+
208208
if(contents.equals(buttonPress)){
209209
x = !x;
210210
}
@@ -306,10 +306,10 @@ void loop() {
306306
contents += (char)LoRa.read();
307307
}
308308
309+
Serial.println(contents);
309310
// print RSSI of packet
310311
Serial.print("' with RSSI ");
311312
Serial.println(LoRa.packetRssi());
312-
Serial.println(contents);
313313
314314
if(contents.equals(buttonPress)){
315315
x = !x;

content/hardware/04.pro/boards/portenta-x8/tutorials/03.uploading-sketches-m4/content.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ In this tutorial, we will go through the process of uploading sketches to the M4
2626
### Required Hardware and Software
2727

2828
- [Portenta X8](https://store.arduino.cc/products/portenta-x8)
29-
- USB-C® cable (either USB-A to USB-or USB-C® to USB-C®)
29+
- [USB-C® cable (USB-C® to USB-A cable)](https://store.arduino.cc/products/usb-cable2in1-type-c)
3030
- [Arduino IDE 1.8.10+](https://www.arduino.cc/en/software), [Arduino IDE 2](https://www.arduino.cc/en/software), or [Arduino CLI](https://github.com/arduino/arduino-cli)
3131
- Latest "Arduino Mbed OS Portenta Boards" Core
3232

content/hardware/04.pro/boards/portenta-x8/tutorials/04.python-arduino-data-exchange/content.md

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ You will be guided on how to achieve this setup. It is recommendable to familiar
3030
- [Portenta X8](https://store.arduino.cc/products/portenta-x8)
3131
- [Portenta breakout](https://docs.arduino.cc/hardware/portenta-breakout)
3232
- Any sensor (in this example, we will use an [BME680](https://www.bosch-sensortec.com/products/environmental-sensors/gas-sensors/bme680/) I<sup>2</sup>C module)
33+
- [USB-C® cable (USB-C® to USB-A cable)](https://store.arduino.cc/products/usb-cable2in1-type-c)
3334
- [Arduino IDE 1.8.10+](https://www.arduino.cc/en/software), [Arduino IDE 2](https://www.arduino.cc/en/software), or [Arduino Cloud Editor](https://create.arduino.cc/editor)
3435

3536
## Python® on the X8

content/hardware/04.pro/boards/portenta-x8/tutorials/05.docker-container/content.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ In this tutorial, we will go through the steps of how to install, run, and remov
3232
### Hardware and Software Requirements
3333

3434
- [Portenta X8](https://store.arduino.cc/products/portenta-x8)
35-
- USB-C® cable (either USB-C® to USB-A or USB-C® to USB-C®)
35+
- [USB-C® cable (USB-C® to USB-A cable)](https://store.arduino.cc/products/usb-cable2in1-type-c)
3636
- Wi-Fi® Access Point with Internet Access
3737
- ADB: [Check how to connect to your Portenta X8](https://docs.arduino.cc/tutorials/portenta-x8/user-manual#out-of-the-box-experience)
3838
- [Arduino IDE 1.8.10+](https://www.arduino.cc/en/software), [Arduino IDE 2](https://www.arduino.cc/en/software), or [Arduino Cloud Editor](https://create.arduino.cc/editor)

content/hardware/04.pro/boards/portenta-x8/tutorials/06.waves-fleet-managment/content.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This tutorial will show you how to define fleets and how to construct a Wave tha
2626
### Required Hardware and Software
2727

2828
- [Arduino Portenta X8](https://store.arduino.cc/products/portenta-x8)
29-
- USB-C® cable (either USB-C® to USB-A or USB-C® to USB-C®)
29+
- [USB-C® cable (USB-C® to USB-A cable)](https://store.arduino.cc/products/usb-cable2in1-type-c)
3030
- Arduino Create account
3131
- Arduino Cloud for business subscription with Portenta X8 Manager add-on: [Learn more about here](https://cloud.arduino.cc/plans#business)
3232
- Foundries.io™ account (linked with the Arduino Cloud for business subscription)

content/hardware/04.pro/boards/portenta-x8/tutorials/07.custom-container/content.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ In this tutorial, we will create a Docker container for the Arduino Portenta X8.
2323

2424
- [Portenta X8](https://store.arduino.cc/portenta-x8)
2525
- ADB: [Check how to connect to your Portenta X8](https://docs.arduino.cc/tutorials/portenta-x8/user-manual#out-of-the-box-experience)
26-
- USB-C® cable (either USB-C® to USB-A or USB-C® to USB-C®)
26+
- [USB-C® cable (USB-C® to USB-A cable)](https://store.arduino.cc/products/usb-cable2in1-type-c)
2727
- [Arduino Cloud Subscription](https://cloud.arduino.cc/)
2828
- [Arduino IDE 1.8.10+](https://www.arduino.cc/en/software), [Arduino IDE 2](https://www.arduino.cc/en/software), or [Arduino Cloud Editor](https://create.arduino.cc/editor)
2929

content/hardware/04.pro/boards/portenta-x8/tutorials/08.image-building/content.md

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ This tutorial targets customers that are not FoundriesFactory subscribers, but s
3131
### Required Hardware and Software
3232

3333
- [Portenta X8](https://store.arduino.cc/products/portenta-x8)
34+
- [USB-C® cable (USB-C® to USB-A cable)](https://store.arduino.cc/products/usb-cable2in1-type-c)
3435
- [Docker Engine](https://docs.docker.com/engine/install/)
3536
- ~60GB of available storage space on your machine
3637

content/hardware/04.pro/boards/portenta-x8/tutorials/09.image-flashing/content.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ In this tutorial, you will learn how to manually flash your Portenta X8 with the
2525
### Required Hardware and Software
2626

2727
- [Arduino Portenta X8](https://store.arduino.cc/products/portenta-x8)
28-
- USB-C® cable (either USB-C® to USB-A or USB-C® to USB-C®)
28+
- [USB-C® cable (USB-C® to USB-A cable)](https://store.arduino.cc/products/usb-cable2in1-type-c)
2929
- Portenta Family Carrier (Optional):
3030
- [Arduino Portenta Breakout Board](https://store.arduino.cc/products/arduino-portenta-breakout)
3131
- [Arduino Portenta Max Carrier](https://store.arduino.cc/products/portenta-max-carrier)

content/hardware/04.pro/boards/portenta-x8/tutorials/10.datalogging-iot/content.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ These four blocks will be running locally on the [Arduino® Portenta X8](https:/
4141

4242
- [Arduino® Portenta X8](https://store.arduino.cc/products/portenta-x8)
4343
- [Arduino® MKR WiFi 1010](https://store.arduino.cc/products/arduino-mkr-wifi-1010)
44-
- USB-C® cable (either USB-C® to USB-A or USB-C® to USB-C®)
44+
- [USB-C® cable (USB-C® to USB-A cable)](https://store.arduino.cc/products/usb-cable2in1-type-c)
4545
- Wi-Fi® Access Point (AP) with Internet access
4646
- ADB or SSH
4747
- Command-line interface

content/hardware/04.pro/boards/portenta-x8/tutorials/11.display-output-webgl/content.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ In this tutorial, we will render web content from the internet using WebGL and d
3131
### Required Hardware and Software
3232

3333
- [Portenta X8](https://store.arduino.cc/products/portenta-x8)
34-
- USB-C® cable (either USB-C® to USB-A or USB-C® to USB-C®)
34+
- [USB-C® cable (USB-C® to USB-A cable)](https://store.arduino.cc/products/usb-cable2in1-type-c)
3535
- USB-C® hub with HDMI
3636
- External monitor
3737
- HDMI cable

content/hardware/04.pro/boards/portenta-x8/tutorials/12.multi-protocol-gateway/content.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ In this tutorial, we will go through the steps on how to set up both the Linux a
3333

3434
- [Arduino Portenta X8](https://store.arduino.cc/products/portenta-x8)
3535
- [Arduino Portenta Max Carrier](https://store.arduino.cc/products/portenta-max-carrier)
36-
- USB-C® cable (either USB-C® to USB-A or USB-C® to USB-C®)
36+
- [USB-C® cable (USB-C® to USB-A cable)](https://store.arduino.cc/products/usb-cable2in1-type-c)
3737
- Wi-Fi® Access Point with Internet Access
3838
- 868-915 MHz antenna with SMA connector
3939
- ADB: [Check how to connect to your Portenta X8](https://docs.arduino.cc/tutorials/portenta-x8/user-manual#out-of-the-box-experience)

content/hardware/04.pro/boards/portenta-x8/tutorials/13.wordpress-webserver/content.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ You will learn to set up and access a WordPress site hosted on the X8 via a web
2929
### Required Hardware and Software
3030

3131
- [Portenta X8](https://store.arduino.cc/products/portenta-x8)
32-
- USB-C® cable (either USB-C® to USB-A or USB-C® to USB-C®)
32+
- [USB-C® cable (USB-C® to USB-A cable)](https://store.arduino.cc/products/usb-cable2in1-type-c)
3333
- The [docker-compose.yml](assets/docker-compose.rar) file used in this tutorial
3434

3535
## Instructions

content/hardware/04.pro/carriers/portenta-breakout/tutorials/breakout-jlink-setup/breakout-jlink-setup.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ This tutorial will show you how to debug an Arduino sketch using the Portenta H7
1919

2020
- [Portenta H7 board](https://store.arduino.cc/portenta-h7)
2121
- [Portenta Breakout board](https://store.arduino.cc/portenta-breakout)
22-
- Arduino IDE 1.8.10+ or Arduino Pro IDE 0.0.4+
22+
- [USB-C® cable (USB-C® to USB-A cable)](https://store.arduino.cc/products/usb-cable2in1-type-c)
23+
- [Arduino IDE 1.8.10+](https://www.arduino.cc/en/software) or [Arduino IDE 2.0+](https://www.arduino.cc/en/software)
2324
- J-link adapter
2425
- Segger J-link device
2526
- Segger Ozone

content/hardware/04.pro/carriers/portenta-breakout/tutorials/getting-started/content.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ The Arduino Portenta Breakout is a versatile tool designed for developing, testi
2121

2222
- [Arduino Portenta H7](https://store.arduino.cc/portenta-h7)
2323
- [Arduino Portenta Breakout](https://store.arduino.cc/portenta-breakout)
24-
- USB-C® cable (either USB-A to USB-or USB-C® to USB-C®)
24+
- [USB-C® cable (USB-C® to USB-A cable)](https://store.arduino.cc/products/usb-cable2in1-type-c)
2525
- Breadboard & Cables
2626
- Pin headers for the Portenta Breakout
2727
- LED & Resistor
2828
- Potentiometer
29-
- Arduino IDE 1.8.10+
29+
- [Arduino IDE 1.8.10+](https://www.arduino.cc/en/software) or [Arduino IDE 2.0+](https://www.arduino.cc/en/software)
3030

3131
## Instructions
3232

content/hardware/04.pro/carriers/portenta-hat-carrier/tutorials/user-manual/content.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ To use the [Portenta Hat Carrier](https://store.arduino.cc/products/portenta-hat
4343

4444
Additionally, the following accessories are needed:
4545

46-
- USB-C® cable (USB-C® to USB-A cable) (x1)
46+
- [USB-C® cable](https://store.arduino.cc/products/usb-cable2in1-type-c) (x1)
4747
- Wi-Fi® Access Point or Ethernet with Internet access (x1)
4848

4949
### Software Requirements

content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/catm1-and-nbiot/content.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,12 @@ The goals of this project are:
3333

3434
## Hardware & Software Needed
3535

36-
- Arduino IDE ([online](https://create.arduino.cc/) or [offline](https://www.arduino.cc/en/main/software)).
3736
- [Portenta H7](https://store.arduino.cc/products/portenta-h7)
3837
- Antenna with GSM 850 / 900 / 1800 / 1900 MHz range and the ability to connect via SMA
3938
- DC 4.5-20V power supply with barrel jack.
4039
- [Portenta Max carrier](https://store.arduino.cc/products/portenta-max-carrier)
40+
- [USB-C® cable (USB-C® to USB-A cable)](https://store.arduino.cc/products/usb-cable2in1-type-c)
41+
- [Arduino IDE 1.8.10+](https://www.arduino.cc/en/software) or [Arduino IDE 2.0+](https://www.arduino.cc/en/software)
4142

4243
## Instructions
4344

content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/connecting-to-ttn/content.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ This tutorial explains how to connect your [Arduino® Max Carrier](http://store.
2828

2929
### Required Hardware and Software
3030

31-
- [Portenta H7](https://store.arduino.cc/products/portenta-h7).
32-
- [Portenta Max Carrier](http://store.arduino.cc/portenta-max-carrier).
33-
- 868-915 MHz antenna with SMA connector.
34-
- USB-C® cable (either USB-A to USB-or USB-C® to USB-C®).
35-
- Arduino IDE ([online](https://create.arduino.cc/) or [offline](https://www.arduino.cc/en/main/software)).
36-
- [Arduino MKRWAN library](https://github.com/arduino-libraries/MKRWAN).
37-
- An active account in [TTN](https://www.thethingsnetwork.org/).
31+
- [Portenta H7](https://store.arduino.cc/products/portenta-h7)
32+
- [Portenta Max Carrier](http://store.arduino.cc/portenta-max-carrier)
33+
- 868-915 MHz antenna with SMA connector
34+
- [USB-C® cable (USB-C® to USB-A cable)](https://store.arduino.cc/products/usb-cable2in1-type-c)
35+
- [Arduino IDE 1.8.10+](https://www.arduino.cc/en/software), [Arduino IDE 2.0+](https://www.arduino.cc/en/software), or [Arduino Cloud Editor](https://create.arduino.cc/editor)
36+
- [Arduino MKRWAN library](https://github.com/arduino-libraries/MKRWAN)
37+
- An active account in [TTN](https://www.thethingsnetwork.org/)
3838

3939
## The Arduino® Portenta Max Carrier LoRaWAN® Module
4040

content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/mpcie-4g-modem/content.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,12 @@ The hands-on part of this tutorial will walk you through performing a speed test
3434

3535
* [Portenta Max Carrier](https://store.arduino.cc/products/portenta-max-carrier) (x1)
3636
* [Portenta X8](https://store.arduino.cc/products/portenta-x8) (x1)
37-
* Pro 4G Module (GNSS Module Global / EMEA) (x1)
37+
* Pro 4G Module ([GNSS Module Global](https://store.arduino.cc/products/4g-module-global?queryID=undefined) / [EMEA](https://store.arduino.cc/products/4g-module-emea?queryID=undefined)) (x1)
3838
* Compatible antennas like the [Arduino Pro 4G Module Antennas Kit](https://store.arduino.cc/products/4g-module-antenna) (x1)
3939

4040
The following accessories are needed:
4141

42-
- USB-C® cable (USB-A to USB-) (x1)
42+
- [USB-C® cable (USB- to USB-A cable)](https://store.arduino.cc/products/usb-cable2in1-type-c) (x1)
4343
- Wi-Fi® Access Point or Ethernet with Internet access (x1)
4444
- External antenna: Main antenna, GNSS antenna, and Rx-Diversity antenna
4545
- Power cables: Wires with a cross-sectional area ranging from 0.82 mm² to 1.3 mm², corresponding to AWG sizes 18 to 16

content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/user-manual/content.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ This user manual offers a detailed guide on the Portenta Max Carrier, consolidat
4141
* [Portenta X8](https://store.arduino.cc/products/portenta-x8) (x1)
4242
* [Portenta C33](https://store.arduino.cc/products/portenta-c33) (x1)
4343
* [Portenta H7](https://store.arduino.cc/products/portenta-h7) (x1)
44-
* USB-C® cable (either USB-C® to USB-A or USB-C® to USB-C®) (x1)
44+
* [USB-C® cable](https://store.arduino.cc/products/usb-cable2in1-type-c) (x1)
4545
* Wi-Fi® Access Point or Ethernet with Internet access (x1)
4646
* Compatible antennas like the [Arduino Pro 4G Module Antennas Kit](https://store.arduino.cc/products/4g-module-antenna) (x1)
4747

@@ -216,9 +216,9 @@ The Portenta Max Carrier incorporates two DIP switches, giving users the ability
216216

217217
For configurations when the Portenta Max Carrier is combined with the Portenta boards, the DIP switch governs these settings:
218218

219-
| **Ethernet DIP Switch Designation** | **Position: ON** | **Position: OFF** |
220-
|:-----------------------------------:|:-----------------:|:-----------------:|
221-
| 1 - 2 | Ethernet Disabled for X8 / Enabled for H7/C33 | Ethernet Enabled for X8 / Disabled for H7/C33 |
219+
| **Ethernet DIP Switch Designation** | **Position: ON** | **Position: OFF** |
220+
|:-----------------------------------:|:---------------------------------------------:|:---------------------------------------------:|
221+
| 1 - 2 | Ethernet Disabled for X8 / Enabled for H7/C33 | Ethernet Enabled for X8 / Disabled for H7/C33 |
222222

223223
For an in-depth understanding of the DIP switch, kindly refer to [this section](#dip-switch-configuration).
224224

content/hardware/04.pro/carriers/portenta-max-carrier/tutorials/x8-getting-started/content.md

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ The goals of this project are:
3030

3131
- [Arduino® Portenta X8](https://store.arduino.cc/products/portenta-x8)
3232
- [Arduino® Portenta Max Carrier](https://store.arduino.cc/products/portenta-max-carrier)
33+
- [USB-C® cable (USB-C® to USB-A cable)](https://store.arduino.cc/products/usb-cable2in1-type-c)
3334

3435
## The Portenta Max Carrier
3536

content/hardware/04.pro/carriers/portenta-mid-carrier/tutorials/user-manual/content.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,9 @@ The **Portenta Mid Carrier** requires one of the SOM boards from the Portenta Fa
4444

4545
The following accessories are needed:
4646

47-
- USB-C® cable (either USB-C® to USB-A or USB-C® to USB-C®) (x1)
47+
- [USB-C® cable](https://store.arduino.cc/products/usb-cable2in1-type-c) (x1)
4848
- Wi-Fi® Access Point or Ethernet with Internet access (x1)
49+
- Pro 4G Module ([GNSS Module Global](https://store.arduino.cc/products/4g-module-global?queryID=undefined) / [EMEA](https://store.arduino.cc/products/4g-module-emea?queryID=undefined)) (x1)
4950
- Compatible antennas like the [Arduino Pro 4G Module Antennas Kit](https://store.arduino.cc/products/4g-module-antenna) (x1)
5051
- Power cables: Wires with a cross-sectional area ranging from 0.82 mm² to 1.3 mm², corresponding to AWG sizes 18 to 16
5152

content/hardware/04.pro/shields/portenta-cat-m1-nb-iot-gnss-shield/tutorials/getting-started/getting-started.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,11 @@ The goals of this project are:
3535

3636
## Hardware & Software Needed
3737

38-
- Arduino IDE ([online](https://create.arduino.cc/) or [offline](https://www.arduino.cc/en/main/software)).
3938
- [Portenta H7](https://store.arduino.cc/products/portenta-h7)
4039
- [Portenta Cat. M1/NB IoT GNSS Shield](https://store.arduino.cc/products/portenta-catm1)
41-
- [Dipole Antenna](https://store.arduino.cc/antenna) (or equivalent product with the same frequency range).
40+
- [USB-C® cable](https://store.arduino.cc/products/usb-cable2in1-type-c)
41+
- [Dipole Antenna](https://store.arduino.cc/antenna) (or equivalent product with the same frequency range)
42+
- [Arduino IDE 1.8.10+](https://www.arduino.cc/en/software) or [Arduino IDE 2.0+](https://www.arduino.cc/en/software)
4243

4344
## Instructions
4445

content/hardware/04.pro/shields/portenta-vision-shield/tutorials/blob-detection/content.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ In this tutorial you will use the Portenta Vision Shield to detect the presence
2525

2626
- [Portenta H7 board](https://store.arduino.cc/portenta-h7)
2727
- [Arduino Portenta Vision Shield - Ethernet](https://store.arduino.cc/products/arduino-portenta-vision-shield-ethernet)
28-
- USB-C® cable (either USB-A to USB-C® or USB-C® to USB-C®)
29-
- Arduino IDE 1.8.10+ or Arduino Pro IDE 0.0.4+
28+
- [USB-C® cable](https://store.arduino.cc/products/usb-cable2in1-type-c)
29+
- [Arduino IDE 1.8.10+](https://www.arduino.cc/en/software) or [Arduino IDE 2.0+](https://www.arduino.cc/en/software)
3030
- Portenta Bootloader Version 20+
3131
- OpenMV IDE 2.6.4+
3232

content/hardware/04.pro/shields/portenta-vision-shield/tutorials/camera-to-bitmap-sd-card/content.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ This tutorial shows you how to capture a frame from the Portenta Vision Shield C
3131

3232
- [Portenta H7](https://store.arduino.cc/portenta-h7)
3333
- Portenta Vision Shield ([LoRa](https://store.arduino.cc/portenta-vision-shield-lora) or [Ethernet](https://store.arduino.cc/portenta-vision-shield))
34-
- 1x USB-C® cable (either USB-A to USB-C® or USB-C® to USB-C®)
34+
- [USB-C® cable](https://store.arduino.cc/products/usb-cable2in1-type-c)
3535
- Micro SD card
36-
- Arduino IDE or Arduino-cli
36+
- [Arduino IDE 1.8.10+](https://www.arduino.cc/en/software), [Arduino IDE 2.0+](https://www.arduino.cc/en/software) or [Arduino-cli](https://arduino.github.io/arduino-cli)
3737

3838
## Instructions
3939

content/hardware/04.pro/shields/portenta-vision-shield/tutorials/connecting-to-ttn/content.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ This tutorial explains how to connect your Portenta H7 to The Things Network (TT
2626

2727
- [Portenta H7](https://store.arduino.cc/portenta-h7)
2828
- [Portenta Vision Shield - LoRa](https://store.arduino.cc/portenta-vision-shield-lora)
29-
- [1x Dipole Pentaband antenna](https://store.arduino.cc/antenna) or a UFL Antenna of the H7
30-
- Arduino [offline](https://www.arduino.cc/en/main/software) IDE or Arduino [Cloud Editor](https://create.arduino.cc/)
31-
- USB-C® cable (either USB-A to USB-C® or USB-C® to USB-C®)
29+
- [Dipole Pentaband antenna](https://store.arduino.cc/antenna) or a UFL Antenna of the H7 (x1)
30+
- [Arduino IDE 1.8.10+](https://www.arduino.cc/en/software), [Arduino IDE 2.0+](https://www.arduino.cc/en/software), or the [Arduino Cloud Editor](https://create.arduino.cc/editor)
31+
- [USB-C® cable](https://store.arduino.cc/products/usb-cable2in1-type-c)
3232
- An [account](https://console.cloud.thethings.network/) with The Things Network
3333

3434
### Updating the LoRa® Module Firmware

content/hardware/04.pro/shields/portenta-vision-shield/tutorials/creating-basic-face-filter/content.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ In this tutorial you will build a MicroPython application with OpenMV, to use th
2626

2727
- [Portenta H7](https://store.arduino.cc/portenta-h7)
2828
- [Portenta Vision Shield](https://store.arduino.cc/portenta-vision-shield)
29-
- USB-C® cable (either USB-A to USB-C® or USB-C® to USB-C®)
30-
- Arduino IDE 1.8.10+ or Arduino Pro IDE 0.0.4+
29+
- [USB-C® cable](https://store.arduino.cc/products/usb-cable2in1-type-c)
30+
- [Arduino IDE 1.8.10+](https://www.arduino.cc/en/software) or [Arduino IDE 2.0+](https://www.arduino.cc/en/software)
3131
- Portenta Bootloader Version 20+
3232
- OpenMV IDE 2.6.4+
3333

content/hardware/04.pro/shields/portenta-vision-shield/tutorials/custom-machine-learning-model/content.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This tutorial teaches you how to train a custom machine learning model with Edge
2626

2727
- [Portenta H7 board](https://store.arduino.cc/portenta-h7)
2828
- [Portenta Vision Shield - LoRa](https://store.arduino.cc/portenta-vision-shield-lora) or [Portenta Vision Shield - Ethernet](https://store.arduino.cc/products/arduino-portenta-vision-shield-ethernet)
29-
- USB-C® cable (either USB-A to USB-C® or USB-C® to USB-C®)
29+
- [USB-C® cable](https://store.arduino.cc/products/usb-cable2in1-type-c)
3030
- An [Edge Impulse®](https://studio.edgeimpulse.com/) account for training the ML model
3131
- Fruits (or other objects) to create the classification model 🍏🍌🍐
3232

content/hardware/04.pro/shields/portenta-vision-shield/tutorials/ethernet-with-ide/content.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ The goals of this project are:
3434

3535
- [Portenta H7](https://store.arduino.cc/portenta-h7)
3636
- [Portenta Vision Shield - Ethernet](https://store.arduino.cc/products/arduino-portenta-vision-shield-ethernet)
37-
- Arduino [offline IDE](https://www.arduino.cc/en/main/software) or Arduino [Cloud Editor](https://create.arduino.cc/)
37+
- [USB-C® cable](https://store.arduino.cc/products/usb-cable2in1-type-c)
38+
- [Arduino IDE 1.8.10+](https://www.arduino.cc/en/software), [Arduino IDE 2.0+](https://www.arduino.cc/en/software), or the [Arduino Cloud Editor](https://create.arduino.cc/editor)
3839
- Ethernet cable
3940
- USB-C® cable
4041

0 commit comments

Comments
 (0)