Skip to content

Commit f4ac105

Browse files
committed
updated spelling mistakes
1 parent 7e0e344 commit f4ac105

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

content/hardware/03.nano/boards/nano-33-ble-rev2/tutorials/cheat-sheet/ble-cheat-sheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ libraries:
1717
- name: Arduino APDS9960
1818
url: https://www.arduino.cc/en/Reference/ArduinoAPDS9960
1919
- name: Arduino SPI
20-
url: hhttps://docs.arduino.cc/language-reference/en/functions/communication/SPI/
20+
url: https://docs.arduino.cc/language-reference/en/functions/communication/SPI/
2121
- name: Arduino Wire
2222
url: https://www.arduino.cc/en/Reference/Wire
2323
- name: ArduinoBLE

content/hardware/06.nicla/boards/nicla-sense-me/tutorials/cheat-sheet/cheat-sheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -748,7 +748,7 @@ The pins used for SPI (Serial Peripheral Interface) on the Nicla Sense ME are th
748748

749749
You can refer to the [pinout](#pins) above to find them on the board.
750750

751-
To use SPI, you first need to include the [SPI](hhttps://docs.arduino.cc/language-reference/en/functions/communication/SPI/) library.
751+
To use SPI, you first need to include the [SPI](https://docs.arduino.cc/language-reference/en/functions/communication/SPI/) library.
752752

753753
```arduino
754754
#include <SPI.h>

content/retired/04.other/arduino-robot/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ The Robot comes with a series of pre-soldered connectors. There are a number of
131131

132132
### Communication
133133

134-
The Robot has a number of facilities for communicating with a computer, another Arduino, or other microcontrollers. The ATmega32U4 provides UART TTL (5V) serial communication, which is available on digital the 10-pin board-to-board connector. The 32U4 also allows for serial (CDC) communication over USB and appears as a virtual com port to software on the computer. The chip also acts as a full speed USB 2.0 device, using standard USB COM drivers. [On Windows, a .inf file is required](http://arduino.cc/en/Guide/Windows#toc4). The Arduino software includes a serial monitor which allows simple textual data to be sent to and from the Robot board. The RX (LED1) and TX LEDs on the board will flash when data is being transmitted via the USB connection to the computer (but not for serial communication between boards). *Each one of the boards has a separate USB product identifier and will show up as different ports on you IDE.* *Make sure you choose the right one when programming.* The ATmega32U4 also supports I2C (TWI) and SPI communication. The Arduino software includes a Wire library to simplify use of the I2C bus; see the [documentation](https://www.arduino.cc/en/Reference/Wire) for details. For SPI communication, use the [SPI library](hhttps://docs.arduino.cc/language-reference/en/functions/communication/SPI/).
134+
The Robot has a number of facilities for communicating with a computer, another Arduino, or other microcontrollers. The ATmega32U4 provides UART TTL (5V) serial communication, which is available on digital the 10-pin board-to-board connector. The 32U4 also allows for serial (CDC) communication over USB and appears as a virtual com port to software on the computer. The chip also acts as a full speed USB 2.0 device, using standard USB COM drivers. [On Windows, a .inf file is required](http://arduino.cc/en/Guide/Windows#toc4). The Arduino software includes a serial monitor which allows simple textual data to be sent to and from the Robot board. The RX (LED1) and TX LEDs on the board will flash when data is being transmitted via the USB connection to the computer (but not for serial communication between boards). *Each one of the boards has a separate USB product identifier and will show up as different ports on you IDE.* *Make sure you choose the right one when programming.* The ATmega32U4 also supports I2C (TWI) and SPI communication. The Arduino software includes a Wire library to simplify use of the I2C bus; see the [documentation](https://www.arduino.cc/en/Reference/Wire) for details. For SPI communication, use the [SPI library](https://docs.arduino.cc/language-reference/en/functions/communication/SPI/).
135135

136136
### Programming
137137

0 commit comments

Comments
 (0)