python-roborock 2.11.2__tar.gz → 2.11.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_roborock-2.11.2 → python_roborock-2.11.3}/PKG-INFO +3 -3
- {python_roborock-2.11.2 → python_roborock-2.11.3}/pyproject.toml +1 -1
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/code_mappings.py +5 -1
- {python_roborock-2.11.2 → python_roborock-2.11.3}/LICENSE +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/README.md +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/__init__.py +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/api.py +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/cli.py +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/cloud_api.py +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/command_cache.py +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/const.py +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/containers.py +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/exceptions.py +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/local_api.py +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/protocol.py +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/py.typed +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/roborock_future.py +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/roborock_message.py +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/roborock_typing.py +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/util.py +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/version_1_apis/__init__.py +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/version_1_apis/roborock_client_v1.py +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/version_1_apis/roborock_local_client_v1.py +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/version_1_apis/roborock_mqtt_client_v1.py +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/version_a01_apis/__init__.py +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/version_a01_apis/roborock_client_a01.py +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/version_a01_apis/roborock_mqtt_client_a01.py +0 -0
- {python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/web_api.py +0 -0
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
2
|
Name: python-roborock
|
|
3
|
-
Version: 2.11.
|
|
3
|
+
Version: 2.11.3
|
|
4
4
|
Summary: A package to control Roborock vacuums.
|
|
5
|
+
Home-page: https://github.com/humbertogontijo/python-roborock
|
|
5
6
|
License: GPL-3.0-only
|
|
6
7
|
Keywords: roborock,vacuum,homeassistant
|
|
7
8
|
Author: humbertogontijo
|
|
@@ -15,7 +16,6 @@ Classifier: Operating System :: OS Independent
|
|
|
15
16
|
Classifier: Programming Language :: Python :: 3
|
|
16
17
|
Classifier: Programming Language :: Python :: 3.11
|
|
17
18
|
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
19
19
|
Classifier: Topic :: Software Development :: Libraries
|
|
20
20
|
Requires-Dist: aiohttp (>=3.8.2,<4.0.0)
|
|
21
21
|
Requires-Dist: async-timeout
|
|
@@ -259,7 +259,9 @@ class RoborockFanSpeedQRevoCurv(RoborockFanPowerCode):
|
|
|
259
259
|
balanced = 102
|
|
260
260
|
turbo = 103
|
|
261
261
|
max = 104
|
|
262
|
-
|
|
262
|
+
off = 105
|
|
263
|
+
custom = 106
|
|
264
|
+
max_plus = 108
|
|
263
265
|
smart_mode = 110
|
|
264
266
|
|
|
265
267
|
|
|
@@ -291,6 +293,7 @@ class RoborockMopModeCode(RoborockEnum):
|
|
|
291
293
|
class RoborockMopModeQRevoCurv(RoborockMopModeCode):
|
|
292
294
|
standard = 300
|
|
293
295
|
deep = 301
|
|
296
|
+
custom = 302
|
|
294
297
|
deep_plus = 303
|
|
295
298
|
fast = 304
|
|
296
299
|
smart_mode = 306
|
|
@@ -373,6 +376,7 @@ class RoborockMopIntensityQRevoCurv(RoborockMopIntensityCode):
|
|
|
373
376
|
low = 201
|
|
374
377
|
medium = 202
|
|
375
378
|
high = 203
|
|
379
|
+
custom = 204
|
|
376
380
|
custom_water_flow = 207
|
|
377
381
|
smart_mode = 209
|
|
378
382
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/version_1_apis/roborock_client_v1.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/version_1_apis/roborock_mqtt_client_v1.py
RENAMED
|
File without changes
|
|
File without changes
|
{python_roborock-2.11.2 → python_roborock-2.11.3}/roborock/version_a01_apis/roborock_client_a01.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|