Fix for Renson set Breeze fan speed (#148537)

This commit is contained in:
Kristof Mariën 2025-07-10 10:52:03 +02:00 committed by Franck Nijhof
parent 63b21fda1a
commit 5cf5be8c9c
No known key found for this signature in database
GPG Key ID: AB33ADACE7101952

View File

@ -196,7 +196,7 @@ class RensonFan(RensonEntity, FanEntity):
all_data = self.coordinator.data
breeze_temp = self.api.get_field_value(all_data, BREEZE_TEMPERATURE_FIELD)
await self.hass.async_add_executor_job(
self.api.set_breeze, cmd.name, breeze_temp, True
self.api.set_breeze, cmd, breeze_temp, True
)
else:
await self.hass.async_add_executor_job(self.api.set_manual_level, cmd)