[XBee] Use SerialModule wrapper
This commit is contained in:
parent
ef95c3ece5
commit
3f803f0e16
3 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue