Changed the comments in the example sketches.

This commit is contained in:
Marcel Schulz 2017-11-22 00:23:53 +01:00
parent 9944f45603
commit fb1c6f7fb4
4 changed files with 36 additions and 36 deletions

View File

@ -11,6 +11,7 @@
* *
* Step 2 - Connect the BME280 sensor to your arduino/wemos device * Step 2 - Connect the BME280 sensor to your arduino/wemos device
* Connect Arduino --> BME280 * Connect Arduino --> BME280
* ------------------
* A4 --> SDA * A4 --> SDA
* A5 --> SCL * A5 --> SCL
* 3V3 --> VCC * 3V3 --> VCC

View File

@ -7,14 +7,14 @@
* If you want to use a Wemos, then change the line 38 "SBNetwork networkDevice(true, 6, 7);" to the correct pinout for a Wemos "SBNetwork networkDevice(true, D2, D8);". * If you want to use a Wemos, then change the line 38 "SBNetwork networkDevice(true, 6, 7);" to the correct pinout for a Wemos "SBNetwork networkDevice(true, D2, D8);".
* ************************************************************** * **************************************************************
* Step 1 - Prepare your device * Step 1 - Prepare your device
* Connect a nRF24L01 transmitter to the Arduino or to a Wemos D1 mini. * Connect a nRF24L01 transmitter to a Wemos D1 mini or an Arduino Device
* WEMOS > RF24 ARDUINO > RF24 --------------------------------------- * WEMOS > RF24 ARDUINO > RF24 --------------------------------------
* ------------ -------------- | GND # # VCC TOP VIEW | * ------------ -------------- | GND # # VCC TOP VIEW |
* 3V3 > VCC VCC > VCC | CE # # CSN OF nRF24L01 | * 3V3 > VCC VCC > VCC | CE # # CSN of nRF24L01 |
* GND > GND GND > GND | SCK # # MOSI | * GND > GND GND > GND | SCK # # MOSI |
* D2 > CE 6 > CE | MISO # # IRQ | * D2 > CE 6 > CE | MISO # # IRQ |
* D8 > CSN 7 > CSN | | * D8 > CSN 7 > CSN | |
* D7 > MOSI 11 > MOSI --------------------------------------- * D7 > MOSI 11 > MOSI --------------------------------------
* D6 > MISO 12 > MISO * D6 > MISO 12 > MISO
* D5 > SCK 13 > SCK * D5 > SCK 13 > SCK
* *

View File

@ -8,13 +8,13 @@
* ************************************************************** * **************************************************************
* Step 1 - Prepare your device * Step 1 - Prepare your device
* Connect a nRF24L01 transmitter to a Wemos D1 mini or an Arduino Device * Connect a nRF24L01 transmitter to a Wemos D1 mini or an Arduino Device
* WEMOS > RF24 ARDUINO > RF24 --------------------------------------- * WEMOS > RF24 ARDUINO > RF24 --------------------------------------
* ------------ -------------- | GND # # VCC TOP VIEW | * ------------ -------------- | GND # # VCC TOP VIEW |
* 3V3 > VCC VCC > VCC | CE # # CSN OF nRF24L01 | * 3V3 > VCC VCC > VCC | CE # # CSN of nRF24L01 |
* GND > GND GND > GND | SCK # # MOSI | * GND > GND GND > GND | SCK # # MOSI |
* D2 > CE 6 > CE | MISO # # IRQ | * D2 > CE 6 > CE | MISO # # IRQ |
* D8 > CSN 7 > CSN | | * D8 > CSN 7 > CSN | |
* D7 > MOSI 11 > MOSI --------------------------------------- * D7 > MOSI 11 > MOSI --------------------------------------
* D6 > MISO 12 > MISO * D6 > MISO 12 > MISO
* D5 > SCK 13 > SCK * D5 > SCK 13 > SCK
* *

View File

@ -4,18 +4,17 @@
* See further library details on https://github.com/Schullebernd/SBNetwork * See further library details on https://github.com/Schullebernd/SBNetwork
* ************************************************************* * *************************************************************
* This Getting started is prepared for using it with a Wemos D1 mini as a master device. * This Getting started is prepared for using it with a Wemos D1 mini as a master device.
* If you want to use an Arduino, then change the line 39 "SBNetwork networkDevice(false, D2, D8);" to the correct pinout for an Arduino "SBNetwork networkDevice(false, 6, 7)". * If you want to use an Arduino, then change the line 36 "SBNetwork networkDevice(false, D2, D8);" to the correct pinout for an Arduino "SBNetwork networkDevice(false, 6, 7)".
*
* ************************************************************** * **************************************************************
* Step 1 - Prepare your device * Step 1 - Prepare your device
* Connect a nRF24L01 transmitter to a Wemos D1 mini or an Arduino Device * Connect a nRF24L01 transmitter to a Wemos D1 mini or an Arduino Device
* WEMOS > RF24 ARDUINO > RF24 --------------------------------------- * WEMOS > RF24 ARDUINO > RF24 --------------------------------------
* ------------ -------------- | GND # # VCC TOP VIEW | * ------------ -------------- | GND # # VCC TOP VIEW |
* 3V3 > VCC VCC > VCC | CE # # CSN OF nRF24L01 | * 3V3 > VCC VCC > VCC | CE # # CSN of nRF24L01 |
* GND > GND GND > GND | SCK # # MOSI | * GND > GND GND > GND | SCK # # MOSI |
* D2 > CE 6 > CE | MISO # # IRQ | * D2 > CE 6 > CE | MISO # # IRQ |
* D8 > CSN 7 > CSN | | * D8 > CSN 7 > CSN | |
* D7 > MOSI 11 > MOSI --------------------------------------- * D7 > MOSI 11 > MOSI --------------------------------------
* D6 > MISO 12 > MISO * D6 > MISO 12 > MISO
* D5 > SCK 13 > SCK * D5 > SCK 13 > SCK
* *