Merge branch 'IoTManagerProject:ver3' into ver3

This commit is contained in:
2022-02-01 09:03:00 +03:00
committed by GitHub

View File

@@ -224,6 +224,7 @@ void mqttCallback(char* topic, uint8_t* payload, size_t length) {
String key = selectFromMarkerToMarker(topicStr, "/", 3);
SerialPrint("I", F("=>MQTT"), "Received event from other device: '" + devId + "' " + key + " " + payloadStr);
String event = key + " " + payloadStr + ",";
jsonWriteStr(configLiveJson, key, payloadStr);
eventBuf += event;
}
}