ESP32 | LVGL8 | Ep 2. Shortcuts for Pull Stack Developer

This commit is contained in:
Eric
2021-10-10 14:12:13 -07:00
parent be89ae8601
commit 713bca11cb
6 changed files with 473 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#pragma once
class BleKeyboard;
class MyShortcut {
private:
BleKeyboard *bleKeyboard;
int shortcutId;
public:
MyShortcut(BleKeyboard *bleKeyboard, int caseId);
void Action();
void RelaseAllkey();
};