Advertisement
LiamBogur

RUN | Bad Arduino Function

Oct 28th, 2018
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. void RUN(char str[]) {
  2.   Keyboard.press(GUI);
  3.   Keyboard.press('r');
  4.   Keyboard.releaseAll();
  5.   delay(1000);
  6.   Keyboard.print(str);
  7.   Keyboard.press(ENTER);
  8.   Keyboard.releaseAll();
  9.   delay(500);
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement