Skip to content

Commit df48677

Browse files
authored
Update climate.py
1 parent b80a128 commit df48677

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

custom_components/luxtronik/climate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ async def _async_set_lux_mode(self, lux_mode: str) -> None:
313313
async def async_set_temperature(self, **kwargs: Any) -> None:
314314
"""Set new target temperature."""
315315
value = kwargs.get(ATTR_TEMPERATURE)
316-
lux_key = LuxParameter.P1148_HEATING_TARGET_TEMP_RBE
316+
lux_key = LuxParameter.P1148_HEATING_TARGET_TEMP_ROOM_THERMOSTAT
317317
data: LuxtronikCoordinatorData | None = await self.coordinator.async_write(
318318
lux_key.split(".")[1], int(value * 10)
319319
)

0 commit comments

Comments
 (0)