Well it seems the limitation comes from the module itself, in particular the method tap() which sends press and release successively...
tap()
exports.tap = function(keyCode, modifiers, callback) { NRF.sendHIDReport([modifiers,0,keyCode,0,0,0,0,0], function() { NRF.sendHIDReport([0,0,0,0,0,0,0,0], function() { if (callback) callback(); }); }); };
@Jean-Philippe_Rey 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.
Well it seems the limitation comes from the module itself, in particular the method
tap()
which sends press and release successively...