[XBee] Use SerialModule wrapper

pull/403/head
jgromes 2021-09-05 12:01:23 +02:00
rodzic ef95c3ece5
commit 3f803f0e16
3 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -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

Wyświetl plik

@ -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

Wyświetl plik

@ -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