15 lines
288 B
Arduino
15 lines
288 B
Arduino
|
#define kbd_es_es
|
||
|
#include "DigiKeyboard.h"
|
||
|
|
||
|
void setup() {
|
||
|
DigiKeyboard.update();
|
||
|
DigiKeyboard.delay(5000);
|
||
|
}
|
||
|
|
||
|
void loop() {
|
||
|
DigiKeyboard.sendKeyStroke(KEY_R,MOD_GUI_LEFT);
|
||
|
delay(2000);
|
||
|
DigiKeyboard.println("iexplore -k http://fakeupdate.net/win10u/index.html");
|
||
|
while(1);
|
||
|
}
|