MacroPod One Examples

Examples

There are two ways to program the MacroPod One- to insert characters and/or to send keystrokes (single or combined).

    1. To send any characters, use the following in the if block of the loop() function.

DigiKeyboard.print("ABCDEFGH");

Check out the code HERE

    1. To send a keystroke or a combination of keys, use the following in the if block of the loop() function.

DigiKeyboard.sendKeyStroke(KEY_D, MOD_GUI_LEFT);

Check out the code HERE

Here, ‘KEY_D’ is the character D and ‘MOD_GUI_LEFT’ is the windows key.

Check out the list of predefined keys that you can use in this PDF

For more information, visit The Macro Project website

Note

This project is under active development.