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.
Dependencies: mbed
main.cpp@0:c9d8fcdda4d0, 2014-02-21 (annotated)
- Committer:
- bcostm
- Date:
- Fri Feb 21 12:57:03 2014 +0000
- Revision:
- 0:c9d8fcdda4d0
- Child:
- 1:bf9d382dd610
Initial version.
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| bcostm | 0:c9d8fcdda4d0 | 1 | #include "mbed.h" |
| bcostm | 0:c9d8fcdda4d0 | 2 | |
| bcostm | 0:c9d8fcdda4d0 | 3 | DigitalIn mybutton(USER_BUTTON); |
| bcostm | 0:c9d8fcdda4d0 | 4 | DigitalOut myled(LED1); |
| bcostm | 0:c9d8fcdda4d0 | 5 | |
| bcostm | 0:c9d8fcdda4d0 | 6 | int main() { |
| bcostm | 0:c9d8fcdda4d0 | 7 | while(1) { |
| bcostm | 0:c9d8fcdda4d0 | 8 | if (mybutton == 0) { // Button is pressed |
| bcostm | 0:c9d8fcdda4d0 | 9 | myled = !myled; // Toggle the LED state |
| bcostm | 0:c9d8fcdda4d0 | 10 | wait(0.2); // 200 ms |
| bcostm | 0:c9d8fcdda4d0 | 11 | } |
| bcostm | 0:c9d8fcdda4d0 | 12 | } |
| bcostm | 0:c9d8fcdda4d0 | 13 | } |
| bcostm | 0:c9d8fcdda4d0 | 14 |