📄 key.h
字号:
#ifndef KEY_H
#define KEY_H
#include "../global.h"
#define Key_DDR DDRF
#define Key_PORT PORTF
#define Key_PIN PINF
#define Key_PLAY (Key_PIN & 0x01)
#define Key_REW (Key_PIN & 0x02)
#define Key_FF (Key_PIN & 0x04)
#define Key_VOLUP (Key_PIN & 0x08)
#define Key_VOLDOWN (Key_PIN & 0x10)
#define Key_ENTER (Key_PIN & 0x20)
#define Key_FUNC (Key_PIN & 0x40)
/*
#define Key_PLAY 0x01
#define Key_REW 0x02
#define Key_FF 0x04
#define Key_VOLUP 0x08
#define Key_VOLDOWN 0x10
#define Key_ENTER 0x20
#define Key_FUNC 0x40
*/
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -