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 d7ce9ba commit 8d8ff89Copy full SHA for 8d8ff89
roborock/version_1_apis/roborock_local_client_v1.py
@@ -191,6 +191,8 @@ async def _send_command(
191
):
192
if method in CLOUD_REQUIRED:
193
raise RoborockException(f"Method {method} is not supported over local connection")
194
+ if self._version is None:
195
+ await self.async_connect()
196
if self._version == "L01":
197
request_id = get_next_int(10000, 999999)
198
dps_payload = {
0 commit comments