Hello everyone,
I ordered the Keybow and was looking on building the customer layout.
Does any one know how to code a 3 key press, example Ctrl+Shift+ESC ? would that be like this?
Sorry for the Noob question, I’m new to all this.
require "keybow"
function handle_key_00(pressed)
if pressed then
keybow.set_modifier(keybow.LEFT_CTRL, keybow.LEFT_SHIFT keybow.KEY_DOWN)
keybow.tap_key(keybow.ESC pressed)
keybow.set_modifier(keybow.LEFT_CTRL, keybow.LEFT_SHIFT, keybow.KEY_UP)
end
end