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@6:42acd9884ffc, 2015-01-09 (annotated)
- Committer:
- m-limbird
- Date:
- Fri Jan 09 15:53:44 2015 -0500
- Revision:
- 6:42acd9884ffc
- Parent:
- 5:42066232dc6f
- Child:
- 7:4377556c2d5b
It is awesome
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
mlimbird | 0:80725699690f | 1 | #include "mbed.h" |
mlimbird | 0:80725699690f | 2 | |
mlimbird | 0:80725699690f | 3 | DigitalOut myled(LED1); |
mlimbird | 0:80725699690f | 4 | |
mlimbird | 0:80725699690f | 5 | int main() { |
mlimbird | 0:80725699690f | 6 | while(1) { |
mlimbird | 0:80725699690f | 7 | myled = 1; |
m-limbird | 5:42066232dc6f | 8 | wait(0.1333); |
mlimbird | 0:80725699690f | 9 | myled = 0; |
m-limbird | 4:e51fc19119ba | 10 | wait(1.9); |
m-limbird | 6:42acd9884ffc | 11 | //this is an awesome program. |
mlimbird | 0:80725699690f | 12 | } |
mlimbird | 0:80725699690f | 13 | } |