From 900e0a02579399a4ee9a11c330692d0f9f0be653 Mon Sep 17 00:00:00 2001 From: Me No Dev Date: Mon, 28 May 2018 13:44:49 +0200 Subject: [PATCH] Update commented pins in SPI Multi example Update commented pins so people do not get confused and try to use them --- .../SPI/examples/SPI_Multiple_Buses/SPI_Multiple_Buses.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/SPI/examples/SPI_Multiple_Buses/SPI_Multiple_Buses.ino b/libraries/SPI/examples/SPI_Multiple_Buses/SPI_Multiple_Buses.ino index fadb165d..b1d4c57c 100644 --- a/libraries/SPI/examples/SPI_Multiple_Buses/SPI_Multiple_Buses.ino +++ b/libraries/SPI/examples/SPI_Multiple_Buses/SPI_Multiple_Buses.ino @@ -32,13 +32,13 @@ void setup() { //SCLK = 18, MISO = 19, MOSI = 23, SS = 5 vspi->begin(); //alternatively route through GPIO pins of your choice - //hspi->begin(5,6,7,8); //SCLK, MISO, MOSI, SS + //hspi->begin(0, 2, 4, 33); //SCLK, MISO, MOSI, SS //initialise hspi with default pins //SCLK = 14, MISO = 12, MOSI = 13, SS = 15 hspi->begin(); //alternatively route through GPIO pins - //hspi->begin(1,2,3,4); //SCLK, MISO, MOSI, SS + //hspi->begin(25, 26, 27, 32); //SCLK, MISO, MOSI, SS //set up slave select pins as outputs as the Arduino API //doesn't handle automatically pulling SS low