led.h 216 B

123456789101112
  1. #ifndef __LED_H
  2. #define __LED_H
  3. #include "sys.h"
  4. #define LED1 PEout(5)// PB5
  5. #define buzz PAout(1)
  6. #define gsm_rst PBout(12)// PB7
  7. #define JDQ PBout(13)// PB6
  8. void LED_Init(void);//³õʼ»¯
  9. #endif