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@13:1430ba2203bd, 2013-05-14 (annotated)
- Committer:
- itoumasa
- Date:
- Tue May 14 08:49:21 2013 +0000
- Revision:
- 13:1430ba2203bd
- Parent:
- 12:41acfc5049e1
- Child:
- 11:3cb3438cf9a7
- Child:
- 14:5e9eb8237a0c
- Child:
- 22:7a54a3ebd376
testxx
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| itoumasa | 0:4ec1baa16254 | 1 | #include "mbed.h" |
| itoumasa | 0:4ec1baa16254 | 2 | |
| itoumasa | 0:4ec1baa16254 | 3 | DigitalOut myled(LED1); |
| itoumasa | 0:4ec1baa16254 | 4 | |
| itoumasa | 13:1430ba2203bd | 5 | //test8 |
| itoumasa | 2:35a0cc4b2510 | 6 | |
| itoumasa | 0:4ec1baa16254 | 7 | int main() { |
| itoumasa | 0:4ec1baa16254 | 8 | while(1) { |
| itoumasa | 0:4ec1baa16254 | 9 | myled = 1; |
| itoumasa | 0:4ec1baa16254 | 10 | wait(0.2); |
| itoumasa | 0:4ec1baa16254 | 11 | myled = 0; |
| itoumasa | 0:4ec1baa16254 | 12 | wait(0.2); |
| itoumasa | 0:4ec1baa16254 | 13 | } |
| itoumasa | 0:4ec1baa16254 | 14 | } |