Update HomeSpan.cpp

This commit is contained in:
Ryan McCahan 2024-03-31 01:18:08 -06:00
parent bd97eb46ff
commit ccf694e186
No known key found for this signature in database
GPG Key ID: 4AD93D9FB6994DFA
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ void Span::pollTask() {
if(!serialInputDisabled && Serial.available()){ if(!serialInputDisabled && Serial.available()){
readSerial(cBuf,64); readSerial(cBuf,64);
if(strncmp(cBuf, "IMPROV", 6) == 0) { if(strncmp(cBuf, "IMPROV", 6) == 0) { // check for an Improv-Serial command, see https://www.improv-wifi.com/serial/
processImprovCommand(cBuf, this); processImprovCommand(cBuf, this);
} else { } else {
processSerialCommand(cBuf); processSerialCommand(cBuf);