1234567891011121314151617181920212223 |
- #ifndef __LED_H
- #define __LED_H
- #include "sys.h"
- typedef struct
- {
- u8 led_pwm_value;
- u16 led_low_off_flag;
- u8 lcd_pwm_value;
- }Led_struct;
- extern Led_struct led_struct;
- extern int Is_blink;
- void Zigbee_led_blink(void);
- void Press_Key_Set(u8 key);
- void Press_Key_up_Set(u8 key);
- void Set_led_lum(u16 lum) ;
- #endif
-
-
|