Skip to content

Instantly share code, notes, and snippets.

@raek
Created August 21, 2015 18:25
Show Gist options
  • Save raek/8455b99eee6a6d371730 to your computer and use it in GitHub Desktop.
Save raek/8455b99eee6a6d371730 to your computer and use it in GitHub Desktop.
#include <AStar32U4Prime.h>
const char key = '.';
Pushbutton buttonD(0);
void setup() {
Keyboard.begin();
}
void loop() {
if (buttonD.getSingleDebouncedPress()) { Keyboard.press(key); }
if (!buttonD.isPressed()) { Keyboard.release(key); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment