Skip to content

Commit 7e0e344

Browse files
committed
updated reference link to spi
1 parent cbc9952 commit 7e0e344

File tree

27 files changed

+41
-41
lines changed

27 files changed

+41
-41
lines changed

content/hardware/01.mkr/01.boards/mkr-1000-wifi/tutorials/mkr-1000-battery-life/mkr-1000-battery-life.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ tags:
66
- Rechargeable batteries
77
libraries:
88
- name: SPI library
9-
url: https://www.arduino.cc/en/reference/SPI
9+
url: https://docs.arduino.cc/language-reference/en/functions/communication/SPI/
1010
- name: WiFi101 library
1111
url: https://www.arduino.cc/en/Reference/WiFi101
1212
author: "Arduino"
@@ -36,7 +36,7 @@ This tutorial gives an overview on how to determine the duration of a rechargeab
3636
- Ammeter
3737

3838
- Arduino IDE ([online](https://create.arduino.cc/) or [offline](https://www.arduino.cc/en/main/software)).
39-
- [SPI library](https://www.arduino.cc/en/reference/SPI)
39+
- [SPI library](https://docs.arduino.cc/language-reference/en/functions/communication/SPI/)
4040
- [WiFi101 library](https://www.arduino.cc/en/Reference/WiFi101)
4141

4242

content/hardware/02.hero/shields/ethernet-shield-rev2/tutorials/barometric-pressure-web-server/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ See the [Barometric Pressure Sensor](https://arduino.cc/en/Tutorial/LibraryExamp
1919

2020
## Circuit
2121

22-
Your Barometric Pressure sensor will be attached to pins 6,7, and the SPI pins of your Arduino / Ethernet shield combo, and powered via your device's 3.3 volt output. Connect the DRDY (Data Ready) pin on your sensor to digital pin 6 on your combo, and the CSB pin (Chip Select) to digital pin 7. Your sensor's COPI (Controller Out Periheral In), MISO (Controller In Periheral Out), and SCK (SPI clock input) pins should then be connected to the SPI pins on your Arduino board/shield. The SPI pin numbers differ depending on which Arduino board you're using and are listed in the [SPI reference page](https://www.arduino.cc/en/Reference/SPI). Make sure that the two share a common ground.
22+
Your Barometric Pressure sensor will be attached to pins 6,7, and the SPI pins of your Arduino / Ethernet shield combo, and powered via your device's 3.3 volt output. Connect the DRDY (Data Ready) pin on your sensor to digital pin 6 on your combo, and the CSB pin (Chip Select) to digital pin 7. Your sensor's COPI (Controller Out Periheral In), MISO (Controller In Periheral Out), and SCK (SPI clock input) pins should then be connected to the SPI pins on your Arduino board/shield. The SPI pin numbers differ depending on which Arduino board you're using and are listed in the [SPI reference page](https://docs.arduino.cc/language-reference/en/functions/communication/SPI/). Make sure that the two share a common ground.
2323

2424
After wiring your sensor, your shield should be connected to a network with an Ethernet cable. You will need to change the network settings in the program to correspond to your network.
2525

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

Lines changed: 2 additions & 2 deletions
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: https://www.arduino.cc/en/reference/SPI
20+
url: hhttps://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
@@ -224,7 +224,7 @@ The pins used for SPI (Serial Peripheral Interface) on the Nano 33 BLE Rev2 are
224224

225225
***The signal names MOSI, MISO and SS have been replaced by COPI (Controller Out, Peripheral In), CIPO (Controller In, Peripheral Out) and CS (Chip Select).***
226226

227-
To use SPI, we first need to include the [SPI](https://www.arduino.cc/en/reference/SPI) library.
227+
To use SPI, we first need to include the [SPI](https://docs.arduino.cc/language-reference/en/functions/communication/SPI/) library.
228228

229229
```arduino
230230
#include <SPI.h>

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

Lines changed: 2 additions & 2 deletions
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: https://www.arduino.cc/en/reference/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
@@ -395,7 +395,7 @@ The pins used for SPI (Serial Peripheral Interface) on the Nano 33 BLE Sense Rev
395395

396396
***The signal names MOSI, MISO and SS has been replaced by COPI (Controller Out, Peripheral In), CIPO (Controller In, Peripheral Out) and CS (Chip Select).***
397397

398-
To use SPI, we first need to include the [SPI](https://www.arduino.cc/en/reference/SPI) library.
398+
To use SPI, we first need to include the [SPI](https://docs.arduino.cc/language-reference/en/functions/communication/SPI/) library.
399399

400400
```arduino
401401
#include <SPI.h>

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

Lines changed: 2 additions & 2 deletions
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: https://www.arduino.cc/en/reference/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
@@ -393,7 +393,7 @@ The pins used for SPI (Serial Peripheral Interface) on the Nano 33 BLE Sense are
393393

394394
***The signal names MOSI, MISO and SS has been replaced by COPI (Controller Out, Peripheral In), CIPO (Controller In, Peripheral Out) and CS (Chip Select).***
395395

396-
To use SPI, we first need to include the [SPI](https://www.arduino.cc/en/reference/SPI) library.
396+
To use SPI, we first need to include the [SPI](https://docs.arduino.cc/language-reference/en/functions/communication/SPI/) library.
397397

398398
```arduino
399399
#include <SPI.h>

content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-01-technical-reference/rp2040-01-technical-reference.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ libraries:
1919
- name: Arduino WifiNINA
2020
url: https://www.arduino.cc/en/Reference/WiFiNINA
2121
- name: Arduino SPI
22-
url: https://www.arduino.cc/en/reference/SPI
22+
url: https://docs.arduino.cc/language-reference/en/functions/communication/SPI/
2323
- name: Arduino Wire
2424
url: https://www.arduino.cc/en/Reference/Wire
2525
- name: ArduinoBLE
@@ -347,7 +347,7 @@ The pins used for SPI (Serial Peripheral Interface) on the Nano RP2040 Connect a
347347

348348
***The signal names MOSI, MISO and SS has been replaced by COPI (Controller Out, Peripheral In), CIPO (Controller In, Peripheral Out) and CS (Chip Select).***
349349

350-
To use SPI, we first need to include the [SPI](https://www.arduino.cc/en/reference/SPI) library.
350+
To use SPI, we first need to include the [SPI](https://docs.arduino.cc/language-reference/en/functions/communication/SPI/) library.
351351

352352
```arduino
353353
#include <SPI.h>

content/hardware/03.nano/boards/nano-rp2040-connect/tutorials/rp2040-web-server-rgb/rp2040-web-server-rgb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ libraries:
1212
- name: Arduino WifiNINA
1313
url: https://www.arduino.cc/en/Reference/WiFiNINA
1414
- name: Arduino SPI
15-
url: https://www.arduino.cc/en/reference/SPI
15+
url: https://docs.arduino.cc/language-reference/en/functions/communication/SPI/
1616
hardware:
1717
- hardware/03.nano/boards/nano-rp2040-connect
1818
software:

content/hardware/04.pro/boards/portenta-c33/tutorials/user-manual/content.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ The Portenta C33 supports SPI communication via two dedicated ports named `SPI0`
559559
| `47` or `PIN_SPI1_SCK` | `P102` |
560560
| `48` or `PIN_SPI1_CS` | `P103` |
561561

562-
Please refer to the [board pinout section](#pinout) of the user manual to find them on the board. Include the [`SPI` library](https://reference.arduino.cc/reference/en/language/functions/communication/spi/) at the top of your sketch to use the SPI communication protocol. The SPI library provides functions for SPI communication:
562+
Please refer to the [board pinout section](#pinout) of the user manual to find them on the board. Include the [`SPI` library](https://docs.arduino.cc/language-reference/en/functions/communication/SPI/) at the top of your sketch to use the SPI communication protocol. The SPI library provides functions for SPI communication:
563563

564564
```arduino
565565
#include <SPI.h>

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
@@ -3033,7 +3033,7 @@ services:
30333033
30343034
<br></br>
30353035
3036-
Include the [`SPI` library](https://reference.arduino.cc/reference/en/language/functions/communication/spi/) at the top of your sketch to use the SPI communication protocol. This can be used with Portenta H7 or C33. The SPI library provides functions for SPI communication:
3036+
Include the [`SPI` library](https://docs.arduino.cc/language-reference/en/functions/communication/SPI/) at the top of your sketch to use the SPI communication protocol. This can be used with Portenta H7 or C33. The SPI library provides functions for SPI communication:
30373037

30383038
```arduino
30393039
#include <SPI.h>

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ libraries:
1515
- name: Arduino PDM
1616
url: https://www.arduino.cc/en/Reference/PDM
1717
- name: Arduino SPI
18-
url: https://www.arduino.cc/en/reference/SPI
18+
url: https://docs.arduino.cc/language-reference/en/functions/communication/SPI/
1919
- name: Arduino Wire
2020
url: https://www.arduino.cc/en/Reference/Wire
2121
- name: ArduinoBLE
@@ -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](https://www.arduino.cc/en/reference/SPI) library.
751+
To use SPI, you first need to include the [SPI](hhttps://docs.arduino.cc/language-reference/en/functions/communication/SPI/) library.
752752

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

0 commit comments

Comments
 (0)