Hello,
I've got a Problem with a project.
I am using 2 XBee to communicate between a computer and an Arduino Fio.
The Fio is programmed to send data to the PC. This does work, but after some time the XBee stops sending data. Usually this will happen after around something like 17 minutes and 357xx Bytes.
I've tested baudrates from 57600 to 4800 baud, but this doesnt make a difference.
Changing the delay in the Fio programm does Influence the amount of sent bytes before failure.
@20 ms 1471xx bytes were sent
@200ms said 357xx bytes.
(Time varies)
This is said code i am testing with:
void setup()
{
Serial.begin(57600);
}
void loop()
{
Serial.write("hello ");
delay(200);
}
This is the XBee's setting:
XBP08-DP_1061.xml 1234 A 3 0 2 0 FFFF 0x20 82 0 60000 0 6 0 0 3 1 0 13F 0 0 1 0 0 0 0 1 0 1 1 0 0 1 0 0 0 28 7F7F 0 0 1 64 3E8 2B 0 0 0 1 C8 7D0
Can anybody help me with this?
Thanks in advance