Got two Xbee series 2 in AT mode, one router; one Coordinator
connected to X-CTU, one on a laptop and one on a PC, Set same Pan on both, Destination = DL O (Coordinator). gone to terminal works fine, then put both on a Arduino with xbee adapter.
router transmits hello world, Coordinator receives, but repeats without any delay even though router has a delay on transmit.
router:
void setup(){
Serial.begin(9600);
}
void loop(){
Serial.println("Hello World!");
delay(5000);
}
Coordinator
//Code for Arduino attached to Xbee in Coordinator AT mode
void setup(){
Serial.begin(9600);
}
void loop(){
if (Serial.available()>0){
Serial.write(Serial.read());
}
}
Anyone any ideas?
regards
Tim