📄 key.h
字号:
/*--------------------------------------------------------------------------
KEY.H
KEY access macros and functions for the DE51-S by Windsun
--------------------------------------------------------------------------*/
#ifndef __KEY_H__
#define __KEY_H__
#define SW1_Pressed ((P1 & 0x01) == 0)
#define SW2_Pressed ((P1 & 0x02) == 0)
#define SW3_Pressed ((P1 & 0x04) == 0)
#define SW4_Pressed ((P1 & 0x08) == 0)
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -