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
Fork of test by
main.cpp@0:8c56dc0f79ba, 2014-02-15 (annotated)
- Committer:
- teruo
- Date:
- Sat Feb 15 01:33:19 2014 +0000
- Revision:
- 0:8c56dc0f79ba
test
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| teruo | 0:8c56dc0f79ba | 1 | #include "mbed.h" |
| teruo | 0:8c56dc0f79ba | 2 | |
| teruo | 0:8c56dc0f79ba | 3 | DigitalOut myled(LED1); |
| teruo | 0:8c56dc0f79ba | 4 | |
| teruo | 0:8c56dc0f79ba | 5 | int main() { |
| teruo | 0:8c56dc0f79ba | 6 | while(1) { |
| teruo | 0:8c56dc0f79ba | 7 | myled = 1; |
| teruo | 0:8c56dc0f79ba | 8 | wait(0.2); |
| teruo | 0:8c56dc0f79ba | 9 | myled = 0; |
| teruo | 0:8c56dc0f79ba | 10 | wait(0.2); |
| teruo | 0:8c56dc0f79ba | 11 | } |
| teruo | 0:8c56dc0f79ba | 12 | } |
