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.
Dependencies: mbed
main.cpp@0:0e723924ae7c, 2019-01-18 (annotated)
- Committer:
- Jtroper
- Date:
- Fri Jan 18 19:19:37 2019 +0000
- Revision:
- 0:0e723924ae7c
- Child:
- 1:b86f099a314a
start;
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| Jtroper | 0:0e723924ae7c | 1 | #include "mbed.h" |
| Jtroper | 0:0e723924ae7c | 2 | |
| Jtroper | 0:0e723924ae7c | 3 | DigitalOut myled(LED1); |
| Jtroper | 0:0e723924ae7c | 4 | |
| Jtroper | 0:0e723924ae7c | 5 | int main() { |
| Jtroper | 0:0e723924ae7c | 6 | while(1) { |
| Jtroper | 0:0e723924ae7c | 7 | myled = 1; |
| Jtroper | 0:0e723924ae7c | 8 | wait(0.2); |
| Jtroper | 0:0e723924ae7c | 9 | myled = 0; |
| Jtroper | 0:0e723924ae7c | 10 | wait(0.2); |
| Jtroper | 0:0e723924ae7c | 11 | } |
| Jtroper | 0:0e723924ae7c | 12 | } |