Image

Laboratoire créatif → Tapez un message dans le bloc-notes

#Arduino #Windows #Automatisation #Scénarios
Date de publication: 20.05.2024

Tapez un message dans le bloc-notes

Le script ouvre un éditeur de texte dans le système d'exploitation Windows et imprime le texte spécifié.

#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);
	
	Keyboard.press(KEY_LEFT_GUI);
	Keyboard.press('r');
	Keyboard.releaseAll();
	
	delay(500);
	
	Keyboard.print("notepad.exe");
	
	typeKey(KEY_RETURN);
	
	delay(1000);
	
	Keyboard.print("This is my test text.");
	
	// Ending stream
	Keyboard.end();
}

/* Unused endless loop */
void loop() {}




Aucun commentaire pour l'instant