Commit b513c251 authored by Eric Duminil's avatar Eric Duminil
Browse files

TODOs

parent 7981d192
Pipeline #2819 passed with stage
in 1 minute and 40 seconds
......@@ -55,6 +55,7 @@ namespace mqtt {
}
}
//TODO: Move all those setters to a separate class, which could be used by Serial/MQTT/WebServer
void setTimer(String messageString) {
messageString.replace("timer ", "");
int timestep = messageString.toInt();
......@@ -141,6 +142,8 @@ namespace mqtt {
}
Serial.println("'.");
//TODO: Move this logic to a separate class, which could be used by Serial/MQTT/WebServer
if (messageString.startsWith("co2 ")) {
setCO2forDebugging(messageString);
} else if (messageString.startsWith("timer ")) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment