We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b8927b commit 8632701Copy full SHA for 8632701
ports/espressif/boards/m5stack_cardputer/board.c
@@ -227,6 +227,8 @@ void update_keyboard(keypad_eventqueue_obj_t *queue) {
227
if (ascii > 0) {
228
if (keystate[KEY_ALT]) {
229
ringbuf_put(&keyqueue, '\e');
230
+ } else if (keystate[KEY_OPT]) {
231
+ ringbuf_put(&keyqueue, '\x10');
232
}
233
ringbuf_put(&keyqueue, ascii);
234
0 commit comments