[MQTT] User SerialModule wrapper

This commit is contained in:
jgromes 2021-09-05 12:04:05 +02:00
parent f40d264343
commit 8c66edc03e
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@
// ESP8266 has the following connections:
// TX pin: 9
// RX pin: 8
ESP8266 wifi = new Module(9, 8);
ESP8266 wifi = new SerialModule(9, 8);
// or using RadioShield
// https://github.com/jgromes/RadioShield

View file

@ -19,7 +19,7 @@
// ESP8266 has the following connections:
// TX pin: 9
// RX pin: 8
ESP8266 wifi = new Module(9, 8);
ESP8266 wifi = new SerialModule(9, 8);
// or using RadioShield
// https://github.com/jgromes/RadioShield