AnalogIn program for mbed NXP LPC11U24

Files at this revision

API Documentation at this revision

Comitter:
chris
Date:
Thu Oct 20 11:23:09 2011 +0000
Parent:
1:83379489ecaa
Child:
3:c0ac1c194c9f
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 11:00:26 2011 +0000
+++ b/main.cpp	Thu Oct 20 11:23:09 2011 +0000
@@ -1,10 +1,10 @@
 #include "mbed.h"
 
 BusOut leds(LED1,LED2,LED3,LED4);
-AnalogIn pot(p20);
+AnalogIn ain(p20);
 
 int main () {
     while (1) {
-        leds = 0xF * pot.read();
+        leds = 0xF * ain.read();
     }
 }