mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-22 17:12:55 +08:00
16 lines
277 B
C
16 lines
277 B
C
#ifndef __LED_H
|
||
#define __LED_H
|
||
#include "common.h"
|
||
|
||
////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
//LED<45>˿ڶ<CBBF><DAB6><EFBFBD>
|
||
#define LED0 PEout(3)
|
||
#define LED1 PEout(4)
|
||
#define LED2 PGout(9)
|
||
|
||
//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||
void LED_Init(void);//<2F><>ʼ<EFBFBD><CABC>
|
||
|
||
#endif
|