mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
18 lines
290 B
C
18 lines
290 B
C
#ifndef __KEY_POLL_H
|
||
#define __KEY_POLL_H
|
||
|
||
//#define SP_KEY_POLL_LOOSE_CHECK //<2F><><EFBFBD><EFBFBD>̧<EFBFBD><CCA7><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||
|
||
typedef enum{
|
||
SP_KEY_PRESS_NONE,
|
||
SP_KEY_PRESS_KEY1,
|
||
SP_KEY_PRESS_KEY2,
|
||
SP_KEY_PRESS_KEY3,
|
||
SP_KEY_PRESS_KEY4,
|
||
}sp_key_value_t;
|
||
|
||
void Key_PollInit(void);
|
||
sp_key_value_t Key_Poll(void);
|
||
|
||
#endif
|