led.h 160 B

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