led.h 302 B

123456789101112131415
  1. #ifndef __LED_H
  2. #define __LED_H
  3. #include "sys.h"
  4. #define LED1 PBout(12)// PB5
  5. #define LED2 PBout(13)// PB5
  6. #define LED3 PBout(14)// PB5
  7. #define LED4 PBout(15)// PB5
  8. #define DJ_OUT PCout(15)// PC14
  9. #define JDQPIN PBout(15)// PB6
  10. void LED_Init(void);//³õʼ»¯
  11. #endif