Battery UM fix for MQTT voltage topic.

This commit is contained in:
Blaz Kristan 2023-01-03 17:14:24 +01:00
parent 90c965a6ba
commit 90463d8613

View File

@ -198,7 +198,7 @@ class UsermodBattery : public Usermod
// still don't know much about MQTT and/or HA
if (WLED_MQTT_CONNECTED) {
char buf[64]; // buffer for snprintf()
snprintf_P(buf, 63, PSTR("/voltage%s"), mqttDeviceTopic);
snprintf_P(buf, 63, PSTR("%s/voltage"), mqttDeviceTopic);
mqtt->publish(buf, 0, false, String(voltage).c_str());
}