2023-06-05 08:46:23.238 DEBUG (MainThread) [roborock.local_api] id=30057 Response from get_status: {'msg_ver': 2, 'msg_seq': 644, 'state': 8, 'battery': 100, 'clean_time': 3, 'clean_area': 0, 'error_code': 0, 'map_present': 1, 'in_cleaning': 0, 'in_returning': ...
assert s.state == RoborockStateCode['8'] assert s.battery == 100 assert s.clean_time == 1176 assert s.clean_area == 20965000 assert s.error_code == 'none' assert s.error_code == RoborockErrorCode['0'] assert s.map_present == 1 assert s.in_cleaning == 0 assert s.in_returnin...
Error 7: Look for anything stuck in the driving wheels then move the robot to a new location and restart. Error 8: Clear away any obstacles around the robot. Error 9: Install the dustbin and filter. Error 10: Filter is either wet or blocked. Error 11: High-intensity magnetic field ...
Error 4: Cliff sensor error. Clean cliff sensors, move robot away from drops and restart. Error 5: Main brush jammed. Clean main brush and bearings. Error 6: Side brush jammed. Remove and clean side brush. Error 7: Wheels jammed. Move the robot and restart. Error 8: Robot trapped. ...
changed code portion: _LOGGER.debug("Got home data %s", home_data) all_devices: list[HomeDataDevice] = home_data.devices + home_data.received_devices device_map: dict[str, HomeDataDevice] = { device['duid']: device for device in all_devices ...
The error was also on the HA core before the update to the latest version. @Lash-L Code owners ofroborockcan trigger bot actions by commenting: @home-assistant closeCloses the issue. @home-assistant rename Awesome new titleRenames the issue. ...
I eagerly wanted to start using the new selected map entity, but it appears to not be working. I've tried both selecting a map using the select and starting a cleaning session on the roborock app. In both situations, the select returns to unknown. It appears the code tries to retrieve ...
The problem After a complete reset of the vacuum, I tried to add it again in Home Assistant. When I followed the wizard dedicated to Xiaomii Miio I have the following error If I do the configuration manually, like proposed in the previou...
code}: {self.message}" class CommandVacuumError(RoborockException): """Class for command vacuum errors."""3 changes: 1 addition & 2 deletions 3 roborock/local_api.py Original file line numberDiff line numberDiff line change @@ -85,8 +85,7 @@ def build_roborock_message(self, method:...
_LOGGER.error(e)7 changes: 4 additions & 3 deletions 7 roborock/protocol.py Original file line numberDiff line numberDiff line change @@ -53,9 +53,10 @@ def __del__(self): def datagram_received(self, data, _): [broadcast_message], _ = BroadcastParser.parse(data) parsed_message ...