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

Appearance settings

Updated reference link to SPI #2502

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
Loading
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
updated spelling mistakes
  • Loading branch information
jhansson-ard committed May 22, 2025
commit f4ac1059353862971d9d0a6f11fdb7f1dd59a186
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ libraries:
- name: Arduino APDS9960
url: https://www.arduino.cc/en/Reference/ArduinoAPDS9960
- name: Arduino SPI
url: hhttps://docs.arduino.cc/language-reference/en/functions/communication/SPI/
url: https://docs.arduino.cc/language-reference/en/functions/communication/SPI/
- name: Arduino Wire
url: https://www.arduino.cc/en/Reference/Wire
- name: ArduinoBLE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@ The pins used for SPI (Serial Peripheral Interface) on the Nicla Sense ME are th

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

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

```arduino
#include <SPI.h>
Expand Down
2 changes: 1 addition & 1 deletion 2 content/retired/04.other/arduino-robot/content.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ The Robot comes with a series of pre-soldered connectors. There are a number of

### Communication

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/).
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/).

### Programming

Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.