Send Text

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
AkiraK
Date:
Tue Jun 18 03:25:27 2013 +0000
Commit message:
XBee send text Sample;

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
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Tue Jun 18 03:25:27 2013 +0000
@@ -0,0 +1,12 @@
+//XBee send message sample
+
+#include "mbed.h"
+
+Serial XBee(p13, p14);
+int main()
+{
+    while (true) {
+        XBee.printf("Hello");
+        wait(1.0);
+    }
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Tue Jun 18 03:25:27 2013 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/737756e0b479
\ No newline at end of file