led.h
Go to the documentation of this file.
1 
8 #ifndef LED_H
9 #define LED_H
10 
15 void initLED(void);
16 
25 void toggleLED(int n, unsigned int state, unsigned int duration);
26 
27 #endif
void toggleLED(int n, unsigned int state, unsigned int duration)
Toogle the state of the choosen LED for a choosen time.
Definition: led.c:22
void initLED(void)
Init LED (P1.0 -> P1.4)
Definition: led.c:14