AnalogIn program for mbed NXP LPC11U24

Committer:
chris
Date:
Fri Oct 21 22:53:56 2011 +0000
Revision:
3:c0ac1c194c9f
Parent:
2:e72c7d47a58e

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
chris 0:24114fb08fbc 1 #include "mbed.h"
chris 0:24114fb08fbc 2
chris 0:24114fb08fbc 3 BusOut leds(LED1,LED2,LED3,LED4);
chris 2:e72c7d47a58e 4 AnalogIn ain(p20);
chris 0:24114fb08fbc 5
chris 0:24114fb08fbc 6 int main () {
chris 1:83379489ecaa 7 while (1) {
chris 2:e72c7d47a58e 8 leds = 0xF * ain.read();
chris 1:83379489ecaa 9 }
chris 0:24114fb08fbc 10 }