Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: C12832_lcd ConfigFile LM75B WiflyInterface mbed-rtos mbed
Fork of Xbee_Hello_World_B by
Diff: main.cpp
- Revision:
- 0:122702c9168a
- Child:
- 1:15d917484a8d
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Fri Aug 31 14:47:12 2012 +0000
@@ -0,0 +1,14 @@
+#include "mbed.h"
+#include "xbee.h"
+
+xbee xbee1(p9,p10,p11); //Initalise xbee_lib
+
+int main()
+{
+ char read_data[202]; //Xbee buffer size is 202 bytes
+
+ while(1) {
+ xbee1.RecieveData(read_data,0); //Read data from the XBee
+ xbee1.SendData(read_data); //Send data to XBee
+ }
+}
\ No newline at end of file
