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 DigitalOut_HelloWorld by
main.cpp@2:b4e2eee99a28, 2014-09-20 (annotated)
- Committer:
- mbedAustin
- Date:
- Sat Sep 20 21:47:16 2014 +0000
- Revision:
- 2:b4e2eee99a28
- Parent:
- 0:b5a9e0614efd
- Child:
- 3:29debdbea629
added comments for clarity
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
mbed_official | 0:b5a9e0614efd | 1 | #include "mbed.h" |
mbed_official | 0:b5a9e0614efd | 2 | |
mbed_official | 0:b5a9e0614efd | 3 | DigitalOut myled(LED1); |
mbed_official | 0:b5a9e0614efd | 4 | |
mbed_official | 0:b5a9e0614efd | 5 | int main() { |
mbed_official | 0:b5a9e0614efd | 6 | while(1) { |
mbedAustin | 2:b4e2eee99a28 | 7 | myled = 1; // turn myled on |
mbed_official | 0:b5a9e0614efd | 8 | wait(0.2); |
mbedAustin | 2:b4e2eee99a28 | 9 | myled = 0; // turn myled off |
mbed_official | 0:b5a9e0614efd | 10 | wait(0.2); |
mbed_official | 0:b5a9e0614efd | 11 | } |
mbed_official | 0:b5a9e0614efd | 12 | } |