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@2:b60cb847489c, 2014-02-21 (annotated)
- Committer:
- bcostm
- Date:
- Fri Feb 21 09:36:12 2014 +0000
- Revision:
- 2:b60cb847489c
- Parent:
- 0:005629fe3609
- Child:
- 4:9c0216df5c8e
Put different delays for ON and OFF states + add comments
Who changed what in which revision?
| User | Revision | Line number | New contents of line | 
|---|---|---|---|
| screamer | 0:005629fe3609 | 1 | #include "mbed.h" | 
| screamer | 0:005629fe3609 | 2 | |
| screamer | 0:005629fe3609 | 3 | DigitalOut myled(LED1); | 
| screamer | 0:005629fe3609 | 4 | |
| screamer | 0:005629fe3609 | 5 | int main() { | 
| screamer | 0:005629fe3609 | 6 | while(1) { | 
| bcostm | 2:b60cb847489c | 7 | myled = 1; // LED is ON | 
| bcostm | 2:b60cb847489c | 8 | wait(0.2); // 200 ms | 
| bcostm | 2:b60cb847489c | 9 | myled = 0; // LED is OFF | 
| bcostm | 2:b60cb847489c | 10 | wait(1.0); // 1 sec | 
| screamer | 0:005629fe3609 | 11 | } | 
| screamer | 0:005629fe3609 | 12 | } |