Removed need for the for(;;) loop

This commit is contained in:
bwees 2020-06-26 17:03:35 -04:00 committed by GitHub
parent 6e770fe5d7
commit 90704a4cf6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -3,9 +3,6 @@
#include "DigiKeyboard.h"
void setup() {
}
void loop() {
DigiKeyboard.sendKeyStroke(0);
DigiKeyboard.delay(500);
DigiKeyboard.sendKeyStroke(KEY_R, MOD_GUI_LEFT);
@ -27,5 +24,8 @@ void loop() {
DigiKeyboard.print(F("$wmplayer.Close();"));
DigiKeyboard.delay(500);
DigiKeyboard.sendKeyStroke(KEY_ENTER);
for(;;){ /*empty*/ }
}
void loop() {
}