xxx_LED_SOS_Timer

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers UP_SOS.h Source File

UP_SOS.h

00001 DigitalOut Boardled(LED1);
00002 
00003 
00004 void UP_SOS_kurz (void)
00005 {        
00006         for (int i=0; i<3; i++)
00007         {
00008             Boardled = 1;
00009             thread_sleep_for(500); //Sleep = Warten...
00010             Boardled = 0;
00011             thread_sleep_for(500); //Sleep = Warten...
00012         }
00013  }
00014  
00015  void UP_SOS_lang (void)
00016  {       
00017         for (int i=0; i<3; i++)
00018         {
00019             Boardled = 1;
00020             thread_sleep_for(1500); //Sleep = Warten...
00021             Boardled = 0;
00022             thread_sleep_for(1500); //Sleep = Warten...
00023         }
00024  }       
00025  
00026 
00027