USB Device - Joystick/Mouse  1.0
led.h
Go to the documentation of this file.
1 #ifndef _LED_H_
2 #define _LED_H_
3 
4 #define BLUE_LED (2)
5 #define GREEN_LED (1)
6 #define ORANGE_LED (0)
7 #define RED_LED (3)
8 
9 
10 void StatusLed_Init( int Led );
11 void StatusLed_On( int Led );
12 void StatusLed_Off( int Led );
13 void StatusLed_Toggle( int Led );
14 
15 #endif //_LED_H_
void StatusLed_Toggle(int Led)
Definition: led.c:38
void StatusLed_Off(int Led)
Definition: led.c:31
void StatusLed_On(int Led)
Definition: led.c:25
void StatusLed_Init(int Led)
Definition: led.c:5