Image

창의실험실 → 지정된 시간이 지나면 PC를 종료하거나 다시 시작합니다

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

지정된 시간이 지나면 PC를 종료하거나 다시 시작합니다

지정된 시간(카운트다운 타이머) 후에 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("cmd");
  typeKey(KEY_RETURN);
  delay(200);
	Keyboard.print("shutdown -s -f -t 3600 -c \"Some text\"");
	// 3600 - 1 Hour, for cancel use command shutdown -a
	// for reboot change -s on -r
	delay(200);
  typeKey(KEY_RETURN);
  Keyboard.print("exit");
	typeKey(KEY_RETURN);
	
	delay(3000);
		
	// Ending stream
	Keyboard.end();
}

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




No Comments Yet