mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-11 02:09:57 +03:00
@@ -37,7 +37,7 @@ const de: Translation = {
|
|||||||
PRODUCT: 'Produkt',
|
PRODUCT: 'Produkt',
|
||||||
VERSION: 'Version',
|
VERSION: 'Version',
|
||||||
ENTITY_NAME: 'Entitätsname',
|
ENTITY_NAME: 'Entitätsname',
|
||||||
VALUE: '{{Wert||wert}}',
|
VALUE: 'Wert',
|
||||||
SHOW_FAV: 'nur Favoriten anzeigen',
|
SHOW_FAV: 'nur Favoriten anzeigen',
|
||||||
DEVICE_SENSOR_DATA: 'Geräte- und Sensordaten',
|
DEVICE_SENSOR_DATA: 'Geräte- und Sensordaten',
|
||||||
DEVICES_SENSORS: 'Geräte & Sensoren',
|
DEVICES_SENSORS: 'Geräte & Sensoren',
|
||||||
|
|||||||
@@ -197,7 +197,7 @@ export const DeviceValueUOM_s = [
|
|||||||
'kW',
|
'kW',
|
||||||
'W',
|
'W',
|
||||||
'KB',
|
'KB',
|
||||||
'second',
|
'seconds',
|
||||||
'dBm',
|
'dBm',
|
||||||
'°F',
|
'°F',
|
||||||
'mV',
|
'mV',
|
||||||
|
|||||||
@@ -1772,6 +1772,11 @@ bool Boiler::set_flow_temp(const char * value, const int8_t id) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// no write/verify if there is no change, see https://github.com/emsesp/EMS-ESP32/issues/654
|
||||||
|
if (v == selFlowTemp_) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
if (has_telegram_id(0xE4)) {
|
if (has_telegram_id(0xE4)) {
|
||||||
write_command(EMS_TYPE_UBASetPoints, 0, v, 0xE4);
|
write_command(EMS_TYPE_UBASetPoints, 0, v, 0xE4);
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -1091,7 +1091,7 @@ void Mqtt::publish_ha_sensor_config(uint8_t type, // EMSdevice
|
|||||||
// keep it compatible to v3.4, use english fullname, no prefix (basename prefix commented out)
|
// keep it compatible to v3.4, use english fullname, no prefix (basename prefix commented out)
|
||||||
char object_id[130];
|
char object_id[130];
|
||||||
if (have_tag) {
|
if (have_tag) {
|
||||||
snprintf(object_id, sizeof(object_id), "%s_%s_%s", device_name, EMSdevice::tag_to_string(tag).c_str(), en_name);
|
snprintf(object_id, sizeof(object_id), "%s_%s_%s", device_name, EMSdevice::tag_to_mqtt(tag).c_str(), en_name);
|
||||||
} else {
|
} else {
|
||||||
snprintf(object_id, sizeof(object_id), "%s_%s", device_name, en_name);
|
snprintf(object_id, sizeof(object_id), "%s_%s", device_name, en_name);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user