Get rid of some unnecessary serial output.

This commit is contained in:
2023-01-27 10:55:13 -05:00
parent 123d70f7f7
commit 59df30351e
2 changed files with 5 additions and 9 deletions

View File

@ -129,8 +129,5 @@ void Communicator::mqtt_discovery(const String topic, StaticJsonDocument<1536> &
}
void Communicator::publish_data(String topic, String value) {
Serial.print(topic);
Serial.print(" --> ");
Serial.println(value);
_mqtt_client.publish(topic.c_str(), value.c_str(), true);
}