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@7:7e9e8f0790c2, 2018-04-19 (annotated)
- Committer:
- bcostm
- Date:
- Thu Apr 19 09:36:18 2018 +0000
- Revision:
- 7:7e9e8f0790c2
- Parent:
- 2:b60cb847489c
essai
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 | } |