We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b80a128 commit df48677Copy full SHA for df48677
custom_components/luxtronik/climate.py
@@ -313,7 +313,7 @@ async def _async_set_lux_mode(self, lux_mode: str) -> None:
313
async def async_set_temperature(self, **kwargs: Any) -> None:
314
"""Set new target temperature."""
315
value = kwargs.get(ATTR_TEMPERATURE)
316
- lux_key = LuxParameter.P1148_HEATING_TARGET_TEMP_RBE
+ lux_key = LuxParameter.P1148_HEATING_TARGET_TEMP_ROOM_THERMOSTAT
317
data: LuxtronikCoordinatorData | None = await self.coordinator.async_write(
318
lux_key.split(".")[1], int(value * 10)
319
)
0 commit comments