[XBee] Use SerialModule wrapper

This commit is contained in:
jgromes 2021-09-05 12:01:23 +02:00
parent ef95c3ece5
commit 3f803f0e16
3 changed files with 3 additions and 3 deletions

View file

@ -18,7 +18,7 @@
// TX pin: 9
// RX pin: 8
// RESET pin: 3
XBee bee = new Module(9, 8, 3);
XBee bee = new SerialModule(9, 8, 3);
// or using RadioShield
// https://github.com/jgromes/RadioShield

View file

@ -18,7 +18,7 @@
// TX pin: 9
// RX pin: 8
// RESET pin: 3
XBee bee = new Module(9, 8, 3);
XBee bee = new SerialModule(9, 8, 3);
// or using RadioShield
// https://github.com/jgromes/RadioShield

View file

@ -20,7 +20,7 @@
// TX pin: 9
// RX pin: 8
// RESET pin: 3
XBeeSerial bee = new Module(9, 8, 3);
XBeeSerial bee = new SerialModule(9, 8, 3);
// or using RadioShield
// https://github.com/jgromes/RadioShield