409D5DF7E6 Xbee coupled with a Sparkfun explorer dongle plugged into a Mac USB port
ID = xbee-409D5E001F
DL = 192.168.1.10
ATPG192.168.1.10 = 1 ms
MY = 192.168.1.100
ATPG192.168.1.100 = 10 ms
409D5E001F Xbee connected to Arduino Uno
DL = 192.168.1.100
MY = 192.168.1.10
Arduino program running is
#include <SoftwareSerial.h>
SoftwareSerial xbee(2,3);
char c = ‘A’;
void setup () {
Serial.begin(9600);
xbee.begin(9600);}
void loop () {
xbee.print(c);
Serial.println(c);
Serial.println(xbee.print(‘FFFFF’);
if (c > ‘Z’) c = ‘A’;
delay (1000);}
Arduino Serial output
A
5
B
5
C
5
D
5
etc …
While it appears that the two Xbees have a connection, I am unable to determine if 409D5DF7E6 has actually received the xmissions. How can I know this? I must be able to save and work with the transmitted data.