I have gone through so many tutorials, it makes my head spin.
There just seems to be so many different verisions, so many permutations of hardware and software that none seem comprehensive. or its out of date.
The common setup (from most of the tutorials) seems to be
PAN ID: 1111
DH:from other Xbee SH
DL: from other Xbee SL
NI: Node1
my OP - operating Pan ID doens't seem to be the same on both, but i can't change it.
my CH - operating channel, doesn't seem to be the same on both, but i can't change it.
I tried the XB24-B ZNET 2.5 (Router/End Device) first, didn't work.
I'm trying the XB24-ZB Zigbee Router AT
I've been using AT.
and setting up one coordinator and other router.
I have the shield mounted on the Arduino (headers soldered). Both of them are connected to my PC.
on the coordinator, router im' running simple TX.
void loop()
{
Serial.print(1);
delay(200);
Serial.print(2);
delay(200);
}
on the coordinator, i'm RX:
void loop()
{
ser = Serial.read();
Serial.println(ser);
delay(200);
}
so on the Coordinator, its just printing "-1".
so its not RXing anything.