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@1:cd96d1c79a8b, 2015-04-02 (annotated)
- Committer:
- darzento
- Date:
- Thu Apr 02 14:03:30 2015 +0000
- Revision:
- 1:cd96d1c79a8b
- Parent:
- 0:878a51a3652a
- Child:
- 3:26633efdb309
asdf
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| darzento | 1:cd96d1c79a8b | 1 | #include "mbed.h" |
| darzento | 1:cd96d1c79a8b | 2 | |
| darzento | 1:cd96d1c79a8b | 3 | DigitalOut myled(LED1); |
| darzento | 1:cd96d1c79a8b | 4 | |
| darzento | 1:cd96d1c79a8b | 5 | int main() { |
| darzento | 1:cd96d1c79a8b | 6 | while(1) { |
| darzento | 1:cd96d1c79a8b | 7 | myled = 1; |
| darzento | 1:cd96d1c79a8b | 8 | wait(0.2); |
| darzento | 1:cd96d1c79a8b | 9 | myled = 0; |
| darzento | 1:cd96d1c79a8b | 10 | wait(0.2); |
| darzento | 1:cd96d1c79a8b | 11 | } |
| darzento | 1:cd96d1c79a8b | 12 | } |
