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:4ccfcf8fa4d9, 2014-01-16 (annotated)
- Committer:
- tanssisatu
- Date:
- Thu Jan 16 06:42:14 2014 +0000
- Revision:
- 0:4ccfcf8fa4d9
tehty kommentit
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| tanssisatu | 0:4ccfcf8fa4d9 | 1 | #include "mbed.h" |
| tanssisatu | 0:4ccfcf8fa4d9 | 2 | |
| tanssisatu | 0:4ccfcf8fa4d9 | 3 | DigitalOut myled1(LED1), myled2(LED2), myled3(LED3), myled4(LED4); |
| tanssisatu | 0:4ccfcf8fa4d9 | 4 | |
| tanssisatu | 0:4ccfcf8fa4d9 | 5 | int main() { |
| tanssisatu | 0:4ccfcf8fa4d9 | 6 | while(1) { |
| tanssisatu | 0:4ccfcf8fa4d9 | 7 | myled1 = 1; |
| tanssisatu | 0:4ccfcf8fa4d9 | 8 | myled2 = 1; |
| tanssisatu | 0:4ccfcf8fa4d9 | 9 | myled3 = 1; |
| tanssisatu | 0:4ccfcf8fa4d9 | 10 | myled4 = 1; |
| tanssisatu | 0:4ccfcf8fa4d9 | 11 | |
| tanssisatu | 0:4ccfcf8fa4d9 | 12 | myled1 = 0; |
| tanssisatu | 0:4ccfcf8fa4d9 | 13 | myled4 = 1; |
| tanssisatu | 0:4ccfcf8fa4d9 | 14 | wait(0.2); |
| tanssisatu | 0:4ccfcf8fa4d9 | 15 | |
| tanssisatu | 0:4ccfcf8fa4d9 | 16 | myled2 = 0; |
| tanssisatu | 0:4ccfcf8fa4d9 | 17 | myled1 = 1; |
| tanssisatu | 0:4ccfcf8fa4d9 | 18 | wait(0.2); |
| tanssisatu | 0:4ccfcf8fa4d9 | 19 | |
| tanssisatu | 0:4ccfcf8fa4d9 | 20 | myled3 = 0; |
| tanssisatu | 0:4ccfcf8fa4d9 | 21 | myled2 = 1; |
| tanssisatu | 0:4ccfcf8fa4d9 | 22 | wait(0.2); |
| tanssisatu | 0:4ccfcf8fa4d9 | 23 | |
| tanssisatu | 0:4ccfcf8fa4d9 | 24 | myled4 = 0; |
| tanssisatu | 0:4ccfcf8fa4d9 | 25 | myled3 = 1; |
| tanssisatu | 0:4ccfcf8fa4d9 | 26 | wait(0.2); |
| tanssisatu | 0:4ccfcf8fa4d9 | 27 | |
| tanssisatu | 0:4ccfcf8fa4d9 | 28 | } |
| tanssisatu | 0:4ccfcf8fa4d9 | 29 | // XDX DX DXDXD XD XD |
| tanssisatu | 0:4ccfcf8fa4d9 | 30 | } |