Hello world program showing use of xbee-lib. Sends data read from serial terminal, then waits for a response.

Dependencies:   mbed xbee_lib

Dependents:   potSend

Files at this revision

API Documentation at this revision

Comitter:
tristanjph
Date:
Fri Aug 31 14:46:32 2012 +0000
Commit message:
initial commit

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
xbee_lib.lib Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Fri Aug 31 14:46:32 2012 +0000
@@ -0,0 +1,18 @@
+#include "mbed.h"
+#include "xbee.h"
+
+xbee xbee1(p9,p10,p11); //Initalise xbee_lib
+Serial pc(USBTX, USBRX); //Initalise PC serial comms
+
+int main()
+{
+    char send_data[202]; //Xbee buffer size is 202 bytes
+    char read_data[202]; //Xbee buffer size is 202 bytes
+
+    while(1) {
+        pc.scanf("%s",send_data); //Read data from serial console
+        xbee1.SendData(send_data); //Send data to XBee
+        xbee1.RecieveData(read_data,0); //Read data from the XBee
+        pc.printf("You said:%s",read_data);
+    }
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Fri Aug 31 14:46:32 2012 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/cd19af002ccc
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xbee_lib.lib	Fri Aug 31 14:46:32 2012 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/tristanjph/code/xbee_lib/#ede20c047d8b