Lehrer Busch
/
070_LED_SOS_UP_Strukturen_UserButton
070_LED_SOS_UP_Strukturen_UserButton
UP_SOS.h
- Committer:
- itbusch
- Date:
- 2022-02-04
- Revision:
- 1:5bb0b616cdaa
- Parent:
- 0:47be8595eabc
File content as of revision 1:5bb0b616cdaa:
DigitalOut Boardled(LED1); void UP_SOS_kurz (void) { for (int i=0; i<4; i++) { Boardled = 1; thread_sleep_for(500); //Sleep = Warten... Boardled = 0; thread_sleep_for(500); //Sleep = Warten... } } void UP_SOS_lang (void) { for (int i=0; i<4; i++) { Boardled = 1; thread_sleep_for(1500); //Sleep = Warten... Boardled = 0; thread_sleep_for(1500); //Sleep = Warten... } }