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:40ce01504ad6, 2019-05-20 (annotated)
- Committer:
- bebehcohen
- Date:
- Mon May 20 21:25:28 2019 +0000
- Revision:
- 7:40ce01504ad6
- Parent:
- 2:b60cb847489c
teste_url
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 |
bebehcohen | 7:40ce01504ad6 | 8 | wait(0.5); // 200 ms |
bcostm | 2:b60cb847489c | 9 | myled = 0; // LED is OFF |
bebehcohen | 7:40ce01504ad6 | 10 | wait(3.0); // 1 sec |
screamer | 0:005629fe3609 | 11 | } |
screamer | 0:005629fe3609 | 12 | } |