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@0:5a09f66e7d83, 2016-02-19 (annotated)
- Committer:
- stancoj
- Date:
- Fri Feb 19 16:00:56 2016 +0000
- Revision:
- 0:5a09f66e7d83
Sutaz NXP cup
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| stancoj | 0:5a09f66e7d83 | 1 | #include "mbed.h" |
| stancoj | 0:5a09f66e7d83 | 2 | #include "TFC.h" |
| stancoj | 0:5a09f66e7d83 | 3 | |
| stancoj | 0:5a09f66e7d83 | 4 | DigitalOut myled(LED1); //farba lediek |
| stancoj | 0:5a09f66e7d83 | 5 | |
| stancoj | 0:5a09f66e7d83 | 6 | int main() { |
| stancoj | 0:5a09f66e7d83 | 7 | while(1) { |
| stancoj | 0:5a09f66e7d83 | 8 | myled = 1; |
| stancoj | 0:5a09f66e7d83 | 9 | wait(1); |
| stancoj | 0:5a09f66e7d83 | 10 | myled = 0; |
| stancoj | 0:5a09f66e7d83 | 11 | wait(1); |
| stancoj | 0:5a09f66e7d83 | 12 | } |
| stancoj | 0:5a09f66e7d83 | 13 | } |