led.h 190 B

1234567891011
  1. #ifndef __LED_H
  2. #define __LED_H
  3. #include "sys.h"
  4. #define BUZZ_LED0 PCout(13)// PB5
  5. #define buzz PBout(8)// PB7
  6. #define fs PBout(7)// PB7
  7. void LED_Init(void);//³õʼ»¯
  8. #endif