Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8eb1a3e

Browse files
committedMay 27, 2024·
Merge branch 'main' into pr/1978
2 parents 66302ab + f7f9ba1 commit 8eb1a3e

File tree

11 files changed

+2024
-2031
lines changed

11 files changed

+2024
-2031
lines changed
 

‎content/arduino-cloud/01.guides/07.node-red/nodered-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ You can run the simple flow shown below using Node-RED's default nodes:
100100
- drag the **"debug"** node into the workspace
101101
- connect the two nodes by dragging a wire from the message node to the debug node
102102
- click on the debug menu from the sidebar on the right
103-
- press **Depoly** from the header on the top
103+
- press **Deploy** from the header on the top
104104
- finally, press on the checkbox of the message node
105105

106106
![Creating a simple flow](assets/nodered-02.gif)

‎content/hardware/02.hero/boards/uno-rev3/tutorials/board-anatomy/content.md

Lines changed: 10 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,15 @@ Arduino boards senses the environment by receiving inputs from many sensors, and
99

1010
![The Arduino UNO.](assets/BoardAnatomy.svg)
1111

12-
- 1. **Digital pins** Use these pins with digitalRead(), digitalWrite(), and analogWrite(). analogWrite() works only on the pins with the PWM symbol.
13-
14-
- 2. **Pin 13 LED** The only actuator built-in to your board. Besides being a handy target for your first blink sketch, this LED is very useful for debugging.
15-
16-
- 3. **Power LED** Indicates that your Arduino is receiving power. Useful for debugging.
17-
18-
- 4. **ATmega microcontroller** The heart of your board.
19-
20-
- 5. **Analog in** Use these pins with analogRead().
21-
22-
- 6. **GND and 5V pins** Use these pins to provide +5V power and ground to your circuits.
23-
24-
- 7. **Power connector** This is how you power your Arduino when it's not plugged into a USB port for power. Can accept voltages between 7-12V.
25-
26-
- 8. **TX and RX LEDs** These LEDs indicate communication between your Arduino and your computer. Expect them to flicker rapidly during sketch upload as well as during serial communication. Useful for debugging.
27-
28-
- 9. **USB port** Used for powering your Arduino UNO, uploading your sketches to your Arduino, and for communicating with your Arduino sketch (via Serial. println() etc.).
29-
30-
- 10. **Reset button** Resets the ATmega microcontroller.
12+
1. **Digital pins** Use these pins with digitalRead(), digitalWrite(), and analogWrite(). analogWrite() works only on the pins with the PWM symbol.
13+
2. **Pin 13 LED** The only actuator built-in to your board. Besides being a handy target for your first blink sketch, this LED is very useful for debugging.
14+
3. **Power LED** Indicates that your Arduino is receiving power. Useful for debugging.
15+
4. **ATmega microcontroller** The heart of your board.
16+
5. **Analog in** Use these pins with analogRead().
17+
6. **GND and 5V pins** Use these pins to provide +5V power and ground to your circuits.
18+
7. **Power connector** This is how you power your Arduino when it's not plugged into a USB port for power. Can accept voltages between 7-12V.
19+
8. **TX and RX LEDs** These LEDs indicate communication between your Arduino and your computer. Expect them to flicker rapidly during sketch upload as well as during serial communication. Useful for debugging.
20+
9. **USB port** Used for powering your Arduino UNO, uploading your sketches to your Arduino, and for communicating with your Arduino sketch (via Serial. println() etc.).
21+
10. **Reset button** Resets the ATmega microcontroller.
3122

3223
The text of the Arduino getting started guide is licensed under a [Creative Commons Attribution-ShareAlike 3.0 License](http://creativecommons.org/licenses/by-sa/3.0/). Code samples in the guide are released into the public domain.

‎content/hardware/02.hero/boards/yun-rev2/tutorials/yun-first-config/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ void wifiConfig(String yunName, String yunPsw, String wifissid, String wifipsw,
559559
560560
p.runShellCommand("uci set network.lan.proto='dhcp'");
561561
562-
p.runShellCommand("echo -e \"" + yunPsw + "\n" + yunPsw + "\" | passwd root"); //change the passwors
562+
p.runShellCommand("echo -e \"" + yunPsw + "\n" + yunPsw + "\" | passwd root"); //change the password
563563
564564
p.runShellCommand("uci commit"); //save the mods done via UCI
565565

‎content/hardware/04.pro/boards/portenta-x8/datasheet/datasheet.md

Lines changed: 569 additions & 569 deletions
Large diffs are not rendered by default.

‎content/hardware/04.pro/boards/portenta-x8/tutorials/01.user-manual/content.md

Lines changed: 1434 additions & 1434 deletions
Large diffs are not rendered by default.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ void setup() {
709709
Serial.println("Mass Storage Device connected.");
710710
711711
/*
712-
* MOUNTIN SDCARD AS FATFS filesystem
712+
* MOUNTING SDCARD AS FATFS filesystem
713713
*/
714714
715715
Serial.println("Mounting Mass Storage Device...");

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -938,7 +938,7 @@ void setup() {
938938
Serial.println("Mass Storage Device connected.");
939939
940940
/*
941-
* MOUNTIN SDCARD AS FATFS filesystem
941+
* MOUNTING SDCARD AS FATFS filesystem
942942
*/
943943
944944
Serial.println("Mounting Mass Storage Device...");

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1690,7 +1690,7 @@ void setup() {
16901690
Serial.println("Mass Storage Device connected.");
16911691
16921692
/*
1693-
* MOUNTIN SDCARD AS FATFS filesystem
1693+
* MOUNTING SDCARD AS FATFS filesystem
16941694
*/
16951695
16961696
Serial.println("Mounting Mass Storage Device...");

‎content/hardware/06.nicla/boards/nicla-sense-me/tutorials/connecting-to-iot-cloud/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ Inside `void setup()` initialize the `Serial` communication, set up the variable
129129
// Connect to Arduino Cloud
130130
ArduinoCloud.begin(ArduinoIoTPreferredConnection);
131131
132-
// Wait to be connected before intitalize the communication with the Nicla Sense ME
132+
// Wait to be connected before initialize the communication with the Nicla Sense ME
133133
Serial.println("Connecting to the Arduino Cloud");
134134
while (ArduinoCloud.connected() != 1) {
135135
ArduinoCloud.update();

‎content/tutorials/generic/secrets-of-arduino-pwm/secrets-of-arduino-pwm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,9 +248,9 @@ The Arduino uses Timer 0 internally for the millis() and delay() functions, so b
248248

249249
The `analogWrite(pin, duty_cycle)` function sets the appropriate pin to PWM and sets the appropriate output compare register to duty_cycle (with the special case for duty cycle of 0 on Timer 0). The `digitalWrite()` function turns off PWM output if called on a timer pin. The relevant code is wiring_analog.c and wiring_digital.c.
250250

251-
If you use `analogWrite(5, 0)` you get a duty cycle of 0%, even though pin 5's timer (Timer 0) is using fast PWM. How can this be, when a fast PWM value of 0 yields a duty cycle of 1/256 as explained above? The answer is that `analogWrite` "cheats"; it has special-case code to explicitly turn off the pin when called on Timer 0 with a duty cycle of 0. As a consequency, the duty cycle of 1/256 is unavailable when you use `analogWrite`` on Timer0, and there is a jump in the actual duty cycle between values of 0 and 1.
251+
If you use `analogWrite(5, 0)` you get a duty cycle of 0%, even though pin 5's timer (Timer 0) is using fast PWM. How can this be, when a fast PWM value of 0 yields a duty cycle of 1/256 as explained above? The answer is that `analogWrite` "cheats"; it has special-case code to explicitly turn off the pin when called on Timer 0 with a duty cycle of 0. As a consequence, the duty cycle of 1/256 is unavailable when you use `analogWrite`` on Timer0, and there is a jump in the actual duty cycle between values of 0 and 1.
252252

253-
Some other Arduino models use dfferent AVR processors with similar timers. The Arduino Mega uses the ATmega1280 (datasheet), which has four 16-bit timers with 3 outputs each and two 8-bit timers with 2 outputs each. Only 14 of the PWM outputs are supported by the Arduino Wiring library, however. Some older Arduino models use the ATmega8 (datasheet), which has three timers but only 3 PWM outputs: Timer 0 has no PWM, Timer 1 is 16 bits and has two PWM outputs, and Timer 2 is 8 bits and has one PWM output.
253+
Some other Arduino models use different AVR processors with similar timers. The Arduino Mega uses the ATmega1280 (datasheet), which has four 16-bit timers with 3 outputs each and two 8-bit timers with 2 outputs each. Only 14 of the PWM outputs are supported by the Arduino Wiring library, however. Some older Arduino models use the ATmega8 (datasheet), which has three timers but only 3 PWM outputs: Timer 0 has no PWM, Timer 1 is 16 bits and has two PWM outputs, and Timer 2 is 8 bits and has one PWM output.
254254

255255
### Troubleshoot
256256

‎scripts/resources/spell-check-ignore-list.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,6 @@ ro
1414
som
1515
ser
1616
Manuel
17-
technic
17+
technic
18+
shiftin
19+
forsee

0 commit comments

Comments
 (0)
Please sign in to comment.