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




暂时没有评论