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@5:f9408b526333, 2017-08-29 (annotated)
- Committer:
- Banyrud
- Date:
- Tue Aug 29 12:02:42 2017 +0000
- Revision:
- 5:f9408b526333
- Parent:
- 4:d29a2f6f9b0e
- Child:
- 6:9e04367c30f0
L?nt av nettet =)
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| Banyrud | 0:d03036f0954c | 1 | #include "mbed.h" |
| Banyrud | 0:d03036f0954c | 2 | |
| Banyrud | 5:f9408b526333 | 3 | BusOut myleds(p21, p22, p23, p24); |
| Banyrud | 4:d29a2f6f9b0e | 4 | unsigned char teller = 0; |
| Banyrud | 0:d03036f0954c | 5 | |
| Banyrud | 0:d03036f0954c | 6 | int main() { |
| Banyrud | 3:e5bb6ffbeef8 | 7 | while(1) { |
| Banyrud | 5:f9408b526333 | 8 | for(int i=0; i<16; i++) { |
| Banyrud | 5:f9408b526333 | 9 | myleds = i; |
| Banyrud | 5:f9408b526333 | 10 | wait(0.25); |
| Banyrud | 5:f9408b526333 | 11 | } |
| Banyrud | 2:ce0c9da29c7d | 12 | } |
| Banyrud | 4:d29a2f6f9b0e | 13 | } |
| Banyrud | 4:d29a2f6f9b0e | 14 | |
| Banyrud | 4:d29a2f6f9b0e | 15 | |
| Banyrud | 4:d29a2f6f9b0e | 16 |