LED_Driver_Interface.h 1 KB
Newer Older
李俭双's avatar
李俭双 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
#ifndef LED_DRIVER_INTERFACE_H__
#define LED_DRIVER_INTERFACE_H__


/*-----------------------------------------------------------*/
#define LED_ON  100
#define LED_OFF 0
#define LED_LINEOUT_Low   0
#define LED_LINEOUT_High  1


#define LampChannel_0  0 

typedef enum 
{
    LampCh0_00 = 0,
    LampCh0_01,
    LampCh0_02_Normal_Voltage,
    LampCh0_03_High_Low_Voltage,
    LampCh0_04_Fuel_W,

    LampCh0_05_Fuel_Y,
    LampCh0_06_Screen_Time,
    LampCh0_07_Key_ISTOP,    
    LampCh0_08,
    LampCh0_09,

    LampCh0_10,
    LampCh0_11,
    LampCh0_12,
    LampCh0_13,
    LampCh0_14,

    LampCh0_15,
    LampCh0_16,
    LampCh0_17,
    LampCh0_18,
    LampCh0_19,

    LampCh0_20,
    LampCh0_21,
    LampCh0_22,
    LampCh0_23,
    LampCh0_24,

    LampCh0_25,
    LampCh0_26,
    LampCh0_27,
    LampCh0_28,
    LampCh0_29_MPH,

    
    LampCh0_30_KM_H,
    LampCh0_31,
    LampCh0_32,
    LampCh0_33,
    LampCh0_34,

    LampCh0_35,

    LampCh0_MAX,

}_LampCh0;


extern void LED_Driver_Init_Example(void);

#endif