Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 26e0a16

Browse files
fixing spelling issues
1 parent 32e8b29 commit 26e0a16

File tree

10 files changed

+2014
-2012
lines changed

10 files changed

+2014
-2012
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/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)

AltStyle によって変換されたページ (->オリジナル) /