Advertisement
Guest User

Untitled

a guest
Dec 15th, 2016
1,619
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. #include "DigiKeyboard.h"
  2. void setup() {}
  3. int limit = 1;
  4. int current = 0;
  5. void loop() {
  6. if (current < limit) {
  7. DigiKeyboard.update();
  8. DigiKeyboard.sendKeyStroke(0);
  9. DigiKeyboard.delay(190);
  10. DigiKeyboard.sendKeyStroke(KEY_R, MOD_GUI_LEFT);
  11. DigiKeyboard.delay(100);
  12. DigiKeyboard.println("ipconfig");
  13. current++;}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement