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




No Comments Yet