Reputation: 7733
I'm a newbie with XBeeS2 module. I have several XBee "router" and 1 XBee "coordinator" on my home area network.
A couple of questions:
Upvotes: 0
Views: 1115
Reputation: 864
Physical address (64bits) and network address (16 bits) are READ-ONLY.
You can send data to coordinator using the physical address as
0x0000000000000000 (64 bits)
and use
0xFFFE (16 bits)
for the network address if the address is unknown.
But if you want to retrieve the exactly address, you need to use the Remote AT Commando (API mode) and query the SL(Serial Number Low) and SH (Serial Number High) commands.
Upvotes: 2
Reputation: 961
I prefer to let the coordinator work with the Arduino, and let the router do your work,because any router can communicate with its PAN coordinator, but coordinator frames in some applications needs to communicate with a specific router.
For more information about the API frames and a lot of thins in XBee you can download the XBee/XBee-PRO RF Modules-DIGI international or Building Wireless Sensor Network .
Greetings ....
Upvotes: 2