You mean how to send key shortcuts from the Puck?
I'd take a look at https://www.espruino.com/BLE+Keyboard
You should be able to use the code there, and change the btnPressed function to:
function btnPressed() { kb.tap(kb.KEY.T, kb.MODIFY.SHIFT | kb.MODIFY.CTRL, function() { }); }
@Gordon 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.
You mean how to send key shortcuts from the Puck?
I'd take a look at https://www.espruino.com/BLE+Keyboard
You should be able to use the code there, and change the btnPressed function to: