Image

रचनात्मक प्रयोगशाला → नोटपैड में एक संदेश टाइप करें

#Arduino #Windows #स्वचालन #स्क्रिप्ट
प्रकाशन तिथि: 20.05.2024

नोटपैड में एक संदेश टाइप करें

स्क्रिप्ट विंडोज़ ऑपरेटिंग सिस्टम में एक टेक्स्ट एडिटर खोलती है और निर्दिष्ट टेक्स्ट को प्रिंट करती है।

#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() {}




No Comments Yet