Fix set fan speed

This commit is contained in:
Dennis Melzer 2024-01-10 22:51:26 +01:00
parent 22b04cf6d8
commit 9d30240762
1 changed files with 1 additions and 1 deletions

View File

@ -434,7 +434,7 @@ class RoboVacEntity(StateVacuumEntity):
fan_speed = "Boost_IQ"
elif fan_speed == "Pure":
fan_speed = "Quiet"
await self.vacuum.async_set({"102": fan_speed})
await self.vacuum.async_set({"130": fan_speed})
async def async_send_command(
self, command: str, params: dict | list | None = None, **kwargs