led.h 337 B

1234567891011121314151617181920212223
  1. #ifndef __LED_H
  2. #define __LED_H
  3. #include "sys.h"
  4. typedef struct
  5. {
  6. u8 led_pwm_value;
  7. u16 led_low_off_flag;
  8. u8 lcd_pwm_value;
  9. }Led_struct;
  10. extern Led_struct led_struct;
  11. extern int Is_blink;
  12. void Zigbee_led_blink(void);
  13. void Press_Key_Set(u8 key);
  14. void Press_Key_up_Set(u8 key);
  15. void Set_led_lum(u16 lum) ;
  16. #endif