Ok, partially answering myself. Using the code from https://github.com/espruino/BangleApps/blob/master/apps/hidkbd/hid-keyboard.js and changing to 0x2b in next = function (cb) { sendHid(0x2b, cb); }; I'm able to simulate TAB by a gesture I've recorded. But how to simulate SHIFT+TAB?
0x2b
next = function (cb) { sendHid(0x2b, cb); };
@ThomasVikström started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Ok, partially answering myself.
Using the code from https://github.com/espruino/BangleApps/blob/master/apps/hidkbd/hid-keyboard.js and changing to
0x2b
innext = function (cb) { sendHid(0x2b, cb); };
I'm able to simulate TAB by a gesture I've recorded.But how to simulate SHIFT+TAB?