comment out printing API commands in IR handling

This commit is contained in:
Scott Bailey 2021-04-29 23:33:01 -07:00
parent 26247b247e
commit e4f9fa3117

View File

@ -580,12 +580,12 @@ void decodeIRJson(uint32_t code)
} else {
lastRepeatableCommand = "";
}
Serial.println("exec: " + htmlCmd);
//Serial.println("exec: " + htmlCmd);
handleSet(nullptr, htmlCmd, false);
lastValidCode = code;
} else if (!jsonCmdObj.isNull()) {
Serial.println("exec json cmd:");
serializeJson(jsonCmdObj, Serial);
//Serial.println("exec json cmd:");
//serializeJson(jsonCmdObj, Serial);
deserializeState(jsonCmdObj);
lastValidCode = code;
}