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.
Revision 0:25aca1983704, committed 2009-09-29
- Comitter:
- vcazan
- Date:
- Tue Sep 29 21:31:14 2009 +0000
- Commit message:
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 |
diff -r 000000000000 -r 25aca1983704 main.cpp
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp Tue Sep 29 21:31:14 2009 +0000
@@ -0,0 +1,36 @@
+/**
+ * XBee Example Test
+ * A test application that demonstrates the ability
+ * of transmitting serial data via an XBee module with
+ * an mbed microprocesor.
+ * By: Vlad Cazan
+ * Date: Tuesday, September 29th 2009
+ */
+
+#include "mbed.h"
+
+Serial xbee1(p9, p10); //Creates a variable for serial comunication through pin 9 and 10
+
+DigitalOut rst1(p11); //Digital reset for the XBee, 200ns for reset
+
+DigitalOut myled(LED3);//Create variable for Led 3 on the mbed
+DigitalOut myled2(LED4);//Create variable for Led 4 on the mbed
+
+Serial pc(USBTX, USBRX);//Opens up serial communication through the USB port via the computer
+
+int main() {
+ rst1 = 0; //Set reset pin to 0
+ myled = 0;//Set LED3 to 0
+ myled2= 0;//Set LED4 to 0
+ wait_ms(1);//Wait at least one millisecond
+ rst1 = 1;//Set reset pin to 1
+ wait_ms(1);//Wait another millisecond
+
+ while (1) {//Neverending Loop
+ if (pc.readable()) {//Checking for serial comminication
+ myled = 0; //Turn Led 3 Off
+ xbee1.putc(pc.getc()); //XBee write whatever the PC is sending
+ myled = 1; //Turn Led 3 on for succcessfull communication
+ }
+ }
+}
\ No newline at end of file
diff -r 000000000000 -r 25aca1983704 mbed.bld --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mbed.bld Tue Sep 29 21:31:14 2009 +0000 @@ -0,0 +1,1 @@ +http://mbed.org/users/mbed_official/code/mbed/builds/a0336ede94ce