From aa6f5c50b2decdd5d04b1f85be9be37a9d0b146f Mon Sep 17 00:00:00 2001 From: g6094199 <37833326+g6094199@users.noreply.github.com> Date: Mon, 5 Jan 2026 09:03:12 +0100 Subject: [PATCH] Update mqtt.cpp: use the same nomenclature as Tasmota and OpenBK uses for Homeassistant to be compliant to the HA typical nomenclatura use the same wording. since we are anyway connecting via wifi or ethernet the wording of "WIFI rssi" is redundant. just use "RSSI" as other platforms do. --- src/core/mqtt.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/mqtt.cpp b/src/core/mqtt.cpp index 71f4e38de..e1e664d71 100644 --- a/src/core/mqtt.cpp +++ b/src/core/mqtt.cpp @@ -562,8 +562,8 @@ void Mqtt::ha_status() { // Note we don't use camelCase as it would change the HA entity_id and impact historic data #ifndef EMSESP_STANDALONE if (!EMSESP::system_.ethernet_connected() || WiFi.isConnected()) { - publish_system_ha_sensor_config(DeviceValueType::INT8, "WiFi RSSI", "rssi", DeviceValueUOM::DBM); - publish_system_ha_sensor_config(DeviceValueType::INT8, "WiFi strength", "wifistrength", DeviceValueUOM::PERCENT); + publish_system_ha_sensor_config(DeviceValueType::INT8, "RSSI", "rssi", DeviceValueUOM::DBM); + publish_system_ha_sensor_config(DeviceValueType::INT8, "Signal", "wifistrength", DeviceValueUOM::PERCENT); } #endif @@ -1628,4 +1628,4 @@ void Mqtt::add_value_bool(JsonObject doc, const char * name, bool value) { } } -} // namespace emsesp \ No newline at end of file +} // namespace emsesp