Example program for the SeeedStudio XBee Shield V2.0, based on UART serial port connectivity (D0/D1 pins). This program sends "HelloWorld" and prints out the received packets

Dependencies:   XBee mbed

Revision:
1:f84c0ec86edf
Parent:
0:78c3c0dabeb7
Child:
2:c487059c640d
--- a/main.cpp	Fri May 30 13:38:55 2014 +0000
+++ b/main.cpp	Fri May 30 13:53:23 2014 +0000
@@ -7,8 +7,8 @@
 //Serial pc(USBTX, USBRX);
 
 /**
- * D1 - TX pin (RX on the WiFi side)
- * D0 - RX pin (TX on the WiFi side)
+ * D1 - TX pin (RX on the shield side)
+ * D0 - RX pin (TX on the shield side)
  * NC - Reset pin; use D5 otherwise the shield might get into reset loop
  */
 xbee xb(D1, D0, D5);
@@ -19,7 +19,7 @@
 
     while(1) {
         xb.SendData("HellWorld");   // Send "HelloWorld"
-        xb.RecieveData(data, 0);     // Read data
+        xb.RecieveData(data, 0);    // Read data
         printf("Received:%s", data);
         wait(1);
     }