Image

창의실험실 → 사이트 링크 자동 열기

#Arduino #Windows #오토메이션 #스크립트
출판 날짜: 20.05.2024

사이트 링크 자동 열기

스크립트는 Windows 운영 체제의 코드에 지정된 링크를 자동으로 엽니다. 지침이나 추가 설명에 대한 링크로 사용할 수 있습니다.

#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