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.
main.cpp
- Committer:
- chris
- Date:
- 2011-10-21
- Revision:
- 3:c0ac1c194c9f
- Parent:
- 2:e72c7d47a58e
File content as of revision 3:c0ac1c194c9f:
#include "mbed.h"
BusOut leds(LED1,LED2,LED3,LED4);
AnalogIn ain(p20);
int main () {
while (1) {
leds = 0xF * ain.read();
}
}