Hi All.
First post in this forum. I'm desperate ! I tried to follow a tutorial about xbee communication :
First part : two modules xbee with usb cables linked to a laptop and basic chat with console terminal.
It works fine.
Second part : one arduinos with xbee router sending message to an other arduino with xbee coordinator.
I can't receive anything.
This project is very critical for me I have to make a demonstration of zigbee communicaation for a meeting on Friday ! Any help is welcome.
Apparently settings of my zigbee modules are correct
ATAI : 0 ATCH=15 for both modules. ATID=1970 is also the same. And SH SL of router is DH DL of router.
Only thing : ATSH or ATDH for both modules returns 13A200 and not 0013A200 even if the two zeros are input.
You can see my conf on this link :
Last part : here are the programs on router and coordinator side.
/router/
void setup() {
Serial.begin(9600);
}
void loop() {
Serial.println("Hello World!");
delay(3000);
}
/coordinator/
void setup() {
Serial.begin(9600);
}
void loop() {
if (Serial.available() > 0) {
Serial.write(Serial.read());
}
}
I'm really stuck and have no idea to debug that.