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:47be8595eabc, 2022-01-31 (annotated)
- Committer:
- itbusch
- Date:
- Mon Jan 31 16:58:37 2022 +0000
- Revision:
- 0:47be8595eabc
- Child:
- 1:5bb0b616cdaa
060_LED_SOS_UP_Strukturen_CableSwitch
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| itbusch | 0:47be8595eabc | 1 | /* mbed BuschA, 60_LED_SOS */ |
| itbusch | 0:47be8595eabc | 2 | #include "mbed.h" |
| itbusch | 0:47be8595eabc | 3 | #include "UP_SOS.h" |
| itbusch | 0:47be8595eabc | 4 | //Initialisiere Ausgangspin und Variable |
| itbusch | 0:47be8595eabc | 5 | DigitalIn CableSwitch(D2); //PullUp auf Board, PA_10 |
| itbusch | 0:47be8595eabc | 6 | |
| itbusch | 0:47be8595eabc | 7 | int main() |
| itbusch | 0:47be8595eabc | 8 | { |
| itbusch | 0:47be8595eabc | 9 | |
| itbusch | 0:47be8595eabc | 10 | while (true) |
| itbusch | 0:47be8595eabc | 11 | { |
| itbusch | 0:47be8595eabc | 12 | if (CableSwitch == false) |
| itbusch | 0:47be8595eabc | 13 | { |
| itbusch | 0:47be8595eabc | 14 | UP_SOS_kurz(); //Funktionsaufruf... |
| itbusch | 0:47be8595eabc | 15 | UP_SOS_lang(); |
| itbusch | 0:47be8595eabc | 16 | UP_SOS_kurz(); |
| itbusch | 0:47be8595eabc | 17 | thread_sleep_for(2000); //Sleep = Warten... |
| itbusch | 0:47be8595eabc | 18 | } |
| itbusch | 0:47be8595eabc | 19 | } |
| itbusch | 0:47be8595eabc | 20 | } |