xxx_LED_SOS_UP_ADC

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 void UP_SOS_kurz (void)
00004 {        
00005         for (int i=0; i<4; i++)
00006         {
00007             Boardled = 1;
00008             thread_sleep_for(500); //Sleep = Warten...
00009             Boardled = 0;
00010             thread_sleep_for(500); //Sleep = Warten...
00011         }
00012  }
00013  
00014  void UP_SOS_lang (void)
00015  {       
00016         for (int i=0; i<4; i++)
00017         {
00018             Boardled = 1;
00019             thread_sleep_for(1500); //Sleep = Warten...
00020             Boardled = 0;
00021             thread_sleep_for(1500); //Sleep = Warten...
00022         }
00023  }       
00024