Hi. I am sending Hello World (11 bytes) from my coordinator to End device which replies with “ACK” packet. Both the Xbees are using Arduino for computation. My round trip time according to Arduino comes as an average of 54ms at almost zero distance. According to this i am getting throughput of 1.63kbps.
(Throughput = bits /round trip time) if i am correct then.
The power level is at maximum of 2mw with wire antenna. Can anyone please advise if this is correct or too low?
Are there any other methods which i can use to analyze the data throughput of Xbee and round trip time? I would really appreciate if anyone can emphasis on this please.
The codes that i am using are as follows:
Transmitter Xbee
unsigned long startTime;
unsigned long RoundTripTime;
void setup() {
Serial.begin(9600);
}
void loop()
{
//startTime = micros();
Serial.print(“Hello World”);
startTime = micros();
while(!Serial.available()){}
char bdata;
String data = “”;
while(Serial.available() > 0)
{
bdata = Serial.read();
data += bdata;
delayMicroseconds(1050);
}
if(data == “ACK”)
{
RoundTripTime = micros() - startTime;
//Serial.println("Total time: ");
Serial.println(RoundTripTime);
}
delay(2000); // prevents overwhelming the serial port
}
Receiver Xbee
void setup()
{
Serial.begin(9600);
}
void loop()
{
// listen out for the letter “H”, and send a “K” if we get one.
while(!Serial.available()){}
char bdata;
String data = “”;
while(Serial.available() > 0)
{
bdata = Serial.read();
data += bdata;
//delay(2);
delayMicroseconds(1050);
}
//Serial.println(data);
if(data == “Hello World”)
//{
Serial.print(“ACK”);
//delay(1000);
}
Thanks in advance.