Skip to content

Commit 8088bfe

Browse files
Merge branch 'main' into jhansson-ard/modulino-trademark
2 parents 3544d61 + 6335fde commit 8088bfe

File tree

134 files changed

+3965
-74765
lines changed

Some content is hidden

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

134 files changed

+3965
-74765
lines changed

content/arduino-cloud/05.iot-remote-app/01.getting-started/iot-remote-app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ The phone's sensor data is automatically stored in Cloud variables, which you ca
2323

2424
To use the Arduino IoT Remote app, visit Google Play / App Store and search for **"Arduino IoT Remote"**. Links are available just above.
2525

26-
***NOTE: The IoT Remote app requires iOS 12.4 or later for iOS the version. If you are using Android, version 8.0 or later is required. Make sure the iOS or Android version on your device is up to date before downloading the app.***
26+
***NOTE: The IoT Remote app requires iOS 15.1 or later for iOS the version. If you are using Android, version 8.0 or later is required. Make sure the iOS or Android version on your device is up to date before downloading the app.***
2727

2828
After installing the app, you will need to log in to your Arduino account. If you do not have one, you can [sign up here](https://login.arduino.cc/login).
2929

content/arduino-cloud/10.education/00.arduino-cloud-for-education/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ The **Sidebar** on the left provides you quick access to all the important tools
6666
- **Devices, Things, Dashboards, Triggers** - these are the core functionalities of the Cloud Platform, enabling you to build IoT projects that allows you to collect, analyze and monitor data from the environment.
6767
- **Resources, Courses & Templates** - These are learning materials and ready-made IoT projects to get you started with your educational kits or other Arduino hardware.
6868
- **Integrations** - Integrate with third-party APIs and extend your projects functionality.
69-
- **Plans Usage** - Here you can track the usage of your free plans. You can always upgrade to a School Plan whenever you want. If you are curious, take a look at our [School Plans options](https://cloud.arduino.cc/#schools).
69+
- **Plans Usage** - Here you can track the usage of your free plans.
7070

7171
***If you are new to the platform, make sure you try out the interactive walkthrough for a faster onboarding experience.***
7272

content/arduino-cloud/10.education/01.shared-spaces/content.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ A **shared space** is a virtual classroom environment where you can optimize cla
1717

1818
In this article, we're spilling the beans on all the necessary tips and tricks you could do with a shared space and how to set it up for your classroom. Let's get started!
1919

20-
***Note: In order to get started with Arduino Cloud, you need to [have an Arduino account](https://login.arduino.cc/login). If you do not have an account yet, feel free to create a new one. You can follow [this tutorial](https://support.arduino.cc/hc/en-us/articles/360016724040-Create-an-Arduino-account) for a step-by-step explanation on how to do it.***
20+
***Note: In order to get started with Arduino Cloud, you need to [have an Arduino account](https://login.arduino.cc/login) and a Team, Custom or School cloud plan. If you do not have an account yet, feel free to create a new one. You can follow [this tutorial](https://support.arduino.cc/hc/en-us/articles/360016724040-Create-an-Arduino-account) for a step-by-step explanation on how to do it.***
2121

2222
## What you will learn
2323

@@ -56,7 +56,7 @@ In the next sections we will take you through setting up a shared space for your
5656

5757
## Create a Shared Space
5858

59-
Creating a shared space is simple and straightforward, however it requires you to have an Arduino account before you can get started. If you haven't created any in the past, [create one](https://support.arduino.cc/hc/en-us/articles/360016724040-Create-an-Arduino-account) now!
59+
Creating a shared space is simple and straightforward, however it requires you to have an Arduino account and either a Business plan or School Plan before you can get started. If you haven't created any in the past, [create one](https://support.arduino.cc/hc/en-us/articles/360016724040-Create-an-Arduino-account) now!
6060

6161
### Login to your Private Space
6262

@@ -157,7 +157,7 @@ Once they click **Join**, they will then be added to your shared space and be vi
157157

158158
## Space Settings
159159

160-
In space settings, you can configure everything from `Change Image` of your space profile to adding and removing members. If you have a free plan you can also track the usage of the Cloud tools and choose to upgrade to a School plan.
160+
In space settings, you can configure everything from `Change Image` of your space profile to adding and removing members.
161161

162162
To change the current settings of your shared space, navigate to the **Space Settings** tab using the sidebar.
163163

@@ -193,7 +193,7 @@ If you have more than three spaces, there will be pop up listing out all the sha
193193

194194
![More than three spaces preview](assets/mote-than-3.png)
195195

196-
***Note: with a Free Plan or School Plan there are no limitations in the number of shared spaces you can have.***
196+
***Note: with a School Plan there are no limitations in the number of shared spaces you can have.***
197197

198198
### Keep track on plan usage
199199

content/hardware/02.hero/boards/uno-r4-minima/features.md

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,6 @@ A reference to all technical features on this board, with pointers to additional
1919
The UNO R4 Minima is the first UNO to feature a USB-C® connector.
2020
</Feature>
2121

22-
<Feature title="3 months of Cloud Maker plan included" image="cloud">
23-
24-
With Arduino UNO R4 you will get 3 months of cloud maker plan for free
25-
26-
<FeatureWrapper>
27-
<FeatureLink variant="primary" title="Register product" url="https://arduino.cc/start"/>
28-
</FeatureWrapper>
29-
</Feature>
30-
3122
<Feature title="Real-Time Clock (RTC)" image="mcu">
3223
Keep track of time & date and set alarms with the built-in RTC.
3324
<FeatureWrapper>

content/hardware/02.hero/boards/uno-r4-minima/tutorials/eeprom/eeprom.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ int addr = 0;
5757
byte value = 100;
5858
5959
void setup() {
60-
EEPROM.write(addr, val);
60+
EEPROM.write(addr, value);
6161
}
6262
void loop(){
6363
}
@@ -81,7 +81,7 @@ void setup() {
8181
}
8282
8383
Serial.print("Address 0: ");
84-
Serial.println(addr);
84+
Serial.println(value);
8585
}
8686
8787
void loop() {

content/hardware/02.hero/boards/uno-r4-minima/tutorials/usb-hid/usb-hid.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,17 @@ To turn your board into an HID, you can use the **keyboard/mouse** API that is b
3737
- [Keyboard](https://www.arduino.cc/reference/en/language/functions/usb/keyboard/)
3838
- [Mouse](https://www.arduino.cc/reference/en/language/functions/usb/mouse/)
3939

40-
In the section below, you will see a couple of useful examples to get you started!
40+
## Sketch Upload Interference
41+
42+
As a consequence of the multi-processor design of the UNO R4 WiFi board, uploads may fail with a "`No device found on ...`" error when the board is running a sketch that uses the HID capabilities.
43+
44+
For this reason, you should use the following procedure to upload under these conditions:
45+
46+
**1.** Press and release the button marked "**RESET**" on the board quickly twice. The LED marked "**L**" on the board should now be pulsing.
47+
48+
**2.** Select the port of the board from the menu in Arduino IDE. The port might have changed after the previous step, so make sure to verify that it is selected.
49+
50+
**3.** Upload your sketch as usual.
4151

4252
## Keyboard
4353

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
software:
2+
- arduino-ide
3+
- arduino-cli
4+
- cloud-editor
5+
hardware:
6+
shields: ~
7+
carriers: ~
8+
boards:
9+
- uno-rev3
10+
- uno-rev3-smd
11+
- uno-wifi-rev2
12+
- uno-r4-wifi
13+
- uno-r4-minima
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

0 commit comments

Comments
 (0)