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@3:35a47548d29d, 2014-06-25 (annotated)
- Committer:
- DaniusKalv
- Date:
- Wed Jun 25 19:29:39 2014 +0000
- Revision:
- 3:35a47548d29d
- Parent:
- 2:3cc1e2dec7a2
- Child:
- 4:de56a118e704
Working without thread
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
DaniusKalv | 0:06ac39308380 | 1 | #include "mbed.h" |
DaniusKalv | 0:06ac39308380 | 2 | #include "matrix.h" |
DaniusKalv | 2:3cc1e2dec7a2 | 3 | #include "text.h" |
DaniusKalv | 3:35a47548d29d | 4 | #include "rtos.h" |
DaniusKalv | 2:3cc1e2dec7a2 | 5 | |
DaniusKalv | 2:3cc1e2dec7a2 | 6 | text generator; |
DaniusKalv | 3:35a47548d29d | 7 | matrix display(p13, p12, p11, p14, p15, p17, p16); |
DaniusKalv | 0:06ac39308380 | 8 | |
DaniusKalv | 0:06ac39308380 | 9 | int main() { |
DaniusKalv | 3:35a47548d29d | 10 | generator.generate("LABAS LAURYNUK!"); |
DaniusKalv | 3:35a47548d29d | 11 | while(true){ |
DaniusKalv | 3:35a47548d29d | 12 | display.show(); |
DaniusKalv | 3:35a47548d29d | 13 | } |
DaniusKalv | 2:3cc1e2dec7a2 | 14 | //matrix("WELCOME!"); |
DaniusKalv | 0:06ac39308380 | 15 | } |