Search results

  1. V

    How to press <Alt>+<Shift> simultaneously?

    I tried constructions: modifier = MODIFIERKEY_LEFT_SHIFT; modifier |= MODIFIERKEY_LEFT_ALT; Keyboard.set_modifier(modifier); Keyboard.send_now(); delay(2500); Keyboard.set_modifier(0); Keyboard.send_now(); and Keyboard.set_modifier(MODIFIERKEY_LEFT_ALT |...
  2. V

    How to press <Alt>+<Shift> simultaneously?

    I have problem with buttons when coding teensy 2.0++. Could you hint me how to press two buttons <Alt>+<Shift> simultaneously? Exactly saying my problem is: this code uint8_t key, modifier=0; void setup() { delay(15000); Keyboard.begin(); // switch_on_lat(); run("cmd")...
  3. V

    Having the hardest time with code that simply duplicates a mouse click or f5 push...

    It seems to me you have missed one important line: "Keyboard.begin();" at the beginning. I have similar problem with buttons. Could you hint me how to press two buttons <Alt>+<Shift> simultaneously? Exactly saying my problem is: this code uint8_t key, modifier=0; void setup() {...
Back
Top