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.
Fork of mbed_blinky by
main.cpp@20:fcd05b4ea914, 2018-01-19 (annotated)
- Committer:
- gorazdko
- Date:
- Fri Jan 19 14:10:52 2018 +0000
- Revision:
- 20:fcd05b4ea914
- Parent:
- 4:81cea7a352b0
mbed blinky with latest mbed
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| dan | 0:7dec7e9ac085 | 1 | #include "mbed.h" |
| dan | 0:7dec7e9ac085 | 2 | |
| dan | 0:7dec7e9ac085 | 3 | DigitalOut myled(LED1); |
| dan | 0:7dec7e9ac085 | 4 | |
| dan | 0:7dec7e9ac085 | 5 | int main() { |
| dan | 0:7dec7e9ac085 | 6 | while(1) { |
| dan | 0:7dec7e9ac085 | 7 | myled = 1; |
| dan | 0:7dec7e9ac085 | 8 | wait(0.2); |
| dan | 0:7dec7e9ac085 | 9 | myled = 0; |
| gorazdko | 20:fcd05b4ea914 | 10 | wait(0.2); |
| stevep | 4:81cea7a352b0 | 11 | } |
| dan | 0:7dec7e9ac085 | 12 | } |
