UM SHT: Apply PR feedback
This commit is contained in:
parent
f3d52f4932
commit
5cfea54b06
@ -191,7 +191,7 @@ void ShtUsermod::publishHomeAssistantAutodiscovery() {
|
|||||||
json[F("stat_cla")] = F("measurement");
|
json[F("stat_cla")] = F("measurement");
|
||||||
snprintf_P(buf, 127, PSTR("%s-temperature"), escapedMac.c_str());
|
snprintf_P(buf, 127, PSTR("%s-temperature"), escapedMac.c_str());
|
||||||
json[F("uniq_id")] = buf;
|
json[F("uniq_id")] = buf;
|
||||||
json[F("unit_of_meas")] = F((unitOfTemp ? "°F" : "°C"));
|
json[F("unit_of_meas")] = unitOfTemp ? F("°F") : F("°C");
|
||||||
appendDeviceToMqttDiscoveryMessage(json);
|
appendDeviceToMqttDiscoveryMessage(json);
|
||||||
payload_size = serializeJson(json, json_str);
|
payload_size = serializeJson(json, json_str);
|
||||||
snprintf_P(buf, 127, PSTR("homeassistant/sensor/%s/%s-temperature/config"), escapedMac.c_str(), escapedMac.c_str());
|
snprintf_P(buf, 127, PSTR("homeassistant/sensor/%s/%s-temperature/config"), escapedMac.c_str(), escapedMac.c_str());
|
||||||
|
Loading…
Reference in New Issue
Block a user