mirror of
https://gitee.com/lzc56/MiaoUI.git
synced 2025-07-18 09:42:08 +00:00
12 lines
223 B
C
12 lines
223 B
C
![]() |
#ifndef _rotary_encoder_h
|
||
|
#define _rotary_encoder_h
|
||
|
|
||
|
#define CLK GPIO_Pin_7
|
||
|
#define DT GPIO_Pin_6
|
||
|
#define SW GPIO_Pin_8
|
||
|
#define Encoder_Port GPIOB
|
||
|
|
||
|
void rotary_encoder_Init(void);
|
||
|
int16_t GETCounter_Encoder(void);
|
||
|
|
||
|
#endif
|