BackLight.h 269 Bytes
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
#ifndef _BACKLIGHT_H_
#define _BACKLIGHT_H_
#include  "common.h"

typedef struct
{
	uint8_t Duty;
	uint8_t Cycle;
    uint16_t Light_Night;
    uint16_t Light_Day;
} _Light;

extern _Light g_Light; 

void BackLight_Init(void);
void BackLight_Process(void);


#endif