serial test

Dependencies:   mbed

Files at this revision

API Documentation at this revision

Comitter:
peccu
Date:
Fri Jun 17 12:35:05 2011 +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 b1ba78fdcc98 main.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Fri Jun 17 12:35:05 2011 +0000
@@ -0,0 +1,25 @@
+#include "mbed.h"
+
+Serial pc(USBTX, USBRX); // tx, rx
+AnalogIn myinput(p20);
+PwmOut led(LED1);
+
+float brightness = 0.0;
+
+int main() {
+    pc.printf("Press 'u' to turn LED1 brightness up, 'd' to turn it down\r\n");
+
+    while(1) {
+     pc.printf("Hello World! : %f\r\n",(float)myinput);
+        char c = pc.getc();
+        if((c == 'u') && (brightness < 0.5)) {
+            brightness += 0.01;
+            led = brightness;
+        }
+        if((c == 'd') && (brightness > 0.0)) {
+            brightness -= 0.01;
+            led = brightness;
+        } 
+
+    }
+}
diff -r 000000000000 -r b1ba78fdcc98 mbed.bld
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Fri Jun 17 12:35:05 2011 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/63bcd7ba4912