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@3:c0ac1c194c9f, 2011-10-21 (annotated)
- Committer:
- chris
- Date:
- Fri Oct 21 22:53:56 2011 +0000
- Revision:
- 3:c0ac1c194c9f
- Parent:
- 2:e72c7d47a58e
Who changed what in which revision?
| User | Revision | Line number | New 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 | } |