espat: change all examples to use Arduino Nano33 IoT by default

Signed-off-by: Ron Evans <ron@hybridgroup.com>
This commit is contained in:
Ron Evans
2019-10-17 13:15:55 +02:00
parent 3fca96e0ef
commit c7555a1469
7 changed files with 22 additions and 17 deletions
+2 -1
View File
@@ -21,9 +21,10 @@ const pass = "YOURPASS"
// IP address of the server aka "hub". Replace with your own info.
const serverIP = "0.0.0.0"
// these are the default pins for the Arduino Nano33 IoT.
// change these to connect to a different UART or pins for the ESP8266/ESP32
var (
uart = machine.UART1
uart = machine.UART2
tx = machine.PA22
rx = machine.PA23