El script abrirá automáticamente el enlace especificado en el código del sistema operativo Windows. Se puede utilizar como enlace a instrucciones o descripción adicional.
#if ARDUINO > 10605
#include <Keyboard.h>
#endif
void typeKey(uint8_t key)
{
Keyboard.press(key);
delay(50);
Keyboard.release(key);
}
/* Init function */
void setup()
{
// Begining the Keyboard stream
Keyboard.begin();
//Wait 500ms
delay(500);
delay(3000);
Keyboard.press(KEY_LEFT_GUI);
Keyboard.press('r');
Keyboard.releaseAll();
delay(200);
Keyboard.print("https://synay.net");
typeKey(KEY_RETURN);
delay(3000);
// Ending stream
Keyboard.end();
}
/* Unused endless loop */
void loop() {}
Sin comentarios aún