Skip to content

Commit df471a0

Browse files
authored
Update number_entities_predefined.py
Fix DHW target waterTemp fro FW <=3.90.0
1 parent f51fc3f commit df471a0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

custom_components/luxtronik/number_entities_predefined.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -450,15 +450,15 @@
450450
# region Domestic water
451451
LuxtronikNumberDescription(
452452
key=SensorKey.DHW_TARGET_TEMPERATURE,
453-
luxtronik_key=LP.P0105_DHW_TARGET_TEMPERATURE,
453+
luxtronik_key=LP.P0002_DHW_TARGET_TEMPERATURE,
454454
device_key=DeviceKey.domestic_water,
455455
mode=NumberMode.BOX,
456456
icon="mdi:thermometer-water",
457457
device_class=SensorDeviceClass.TEMPERATURE,
458458
native_unit_of_measurement=UnitOfTemperature.CELSIUS,
459-
native_min_value=-40.0,
460-
native_max_value=60.0,
461-
native_step=1.0,
459+
native_min_value=5.0,
460+
native_max_value=65.0,
461+
native_step=0.5,
462462
max_firmware_version=Version("3.90.0"),
463463
update_interval=None,
464464
),
@@ -471,9 +471,9 @@
471471
icon="mdi:thermometer-water",
472472
device_class=SensorDeviceClass.TEMPERATURE,
473473
native_unit_of_measurement=UnitOfTemperature.CELSIUS,
474-
native_min_value=-40.0,
475-
native_max_value=60.0,
476-
native_step=1.0,
474+
native_min_value=5.0,
475+
native_max_value=65.0,
476+
native_step=0.5,
477477
min_firmware_version=Version("3.90.1"),
478478
update_interval=None,
479479
),

0 commit comments

Comments
 (0)