Skip to content

Instantly share code, notes, and snippets.

@ha1t
Created November 8, 2016 11:24
Show Gist options
  • Save ha1t/26292029e660c6570bb07045543caeed to your computer and use it in GitHub Desktop.
Save ha1t/26292029e660c6570bb07045543caeed to your computer and use it in GitHub Desktop.
#include "Keyboard.h"
void setup() {
Keyboard.begin();
delay(500);
Keyboard.press(KEY_LEFT_GUI);
Keyboard.press(' ');
Keyboard.releaseAll();
delay(200);
Keyboard.println("notes");
delay(200);
Keyboard.press(KEY_RETURN);
Keyboard.releaseAll();
}
void loop() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment