We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f1def8a commit 3a9467fCopy full SHA for 3a9467f
wled00/wled_serial.cpp
@@ -167,7 +167,7 @@ void handleSerial()
167
#endif
168
} else if (next == 'X') { // WLEDMM - force reconnect via Serial
169
forceReconnect = true;
170
- } else if (next == 'R') {
+ } else if (next == 'R') { // WLEDMM - force reboot via Serial
171
Serial.print("Rebooting ");
172
for (int i=0;i<5;i++) {
173
Serial.print(".");
@@ -176,7 +176,7 @@ void handleSerial()
176
Serial.println(" now!");
177
Serial.flush();
178
Serial.end();
179
- ESP.restart(); // WLEDMM - force reboot via Serial
+ ESP.restart();
180
} else if (next == 'G') { // WLEDMM - "G"EQ via Serial
181
um_data_t *um_data = getAudioData();
182
uint8_t fftResult[16] = {0};
0 commit comments