AnalogIn program for mbed NXP LPC11U24

Files at this revision

API Documentation at this revision

Comitter:
chris
Date:
Thu Oct 20 11:00:26 2011 +0000
Parent:
0:24114fb08fbc
Child:
2:e72c7d47a58e
Commit message:

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Thu Oct 20 10:54:33 2011 +0000
+++ b/main.cpp	Thu Oct 20 11:00:26 2011 +0000
@@ -4,7 +4,7 @@
 AnalogIn pot(p20);
 
 int main () {
-  while(1) {
-    leds = 0x1 << int(3.0 * pot.read());
-  }
+    while (1) {
+        leds = 0xF * pot.read();
+    }
 }