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@0:da6d52708043, 2022-05-31 (annotated)
- Committer:
- blazetechusa
- Date:
- Tue May 31 16:01:58 2022 +0000
- Revision:
- 0:da6d52708043
Hmmm
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| blazetechusa | 0:da6d52708043 | 1 | #include "mbed.h" |
| blazetechusa | 0:da6d52708043 | 2 | |
| blazetechusa | 0:da6d52708043 | 3 | DigitalOut myled(LED1); |
| blazetechusa | 0:da6d52708043 | 4 | |
| blazetechusa | 0:da6d52708043 | 5 | int main() { |
| blazetechusa | 0:da6d52708043 | 6 | while(1) { |
| blazetechusa | 0:da6d52708043 | 7 | myled = 1; |
| blazetechusa | 0:da6d52708043 | 8 | wait(0.2); |
| blazetechusa | 0:da6d52708043 | 9 | myled = 0; |
| blazetechusa | 0:da6d52708043 | 10 | wait(0.2); |
| blazetechusa | 0:da6d52708043 | 11 | } |
| blazetechusa | 0:da6d52708043 | 12 | } |