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@4:e51fc19119ba, 2015-01-09 (annotated)
- Committer:
- m-limbird
- Date:
- Fri Jan 09 13:29:50 2015 -0500
- Revision:
- 4:e51fc19119ba
- Parent:
- 3:4f1ee929fbf4
- Child:
- 5:42066232dc6f
Changed the time (again)
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 | 3:4f1ee929fbf4 | 8 | wait(0.13); | 
| mlimbird | 0:80725699690f | 9 | myled = 0; | 
| m-limbird | 4:e51fc19119ba | 10 | wait(1.9); | 
| mlimbird | 0:80725699690f | 11 | } | 
| mlimbird | 0:80725699690f | 12 | } |