Skip to content

Commit a41bdf8

Browse files
authored
Merge branch 'humbertogontijo:main' into main
2 parents 19abaa9 + 71e8a9e commit a41bdf8

File tree

4 files changed

+30
-1
lines changed

4 files changed

+30
-1
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
# CHANGELOG
22

33

4+
## v2.8.3 (2024-12-19)
5+
6+
### Bug Fixes
7+
8+
- Add support for QRevo Master mop mode
9+
([#259](https://github.com/humbertogontijo/python-roborock/pull/259),
10+
[`db11c0f`](https://github.com/humbertogontijo/python-roborock/commit/db11c0f8ca7c08d2f795f77f7a652db4bfaa91ae))
11+
12+
13+
## v2.8.2 (2024-12-19)
14+
15+
### Bug Fixes
16+
17+
- Add a mop mode to QRevoMaster
18+
([#258](https://github.com/humbertogontijo/python-roborock/pull/258),
19+
[`bf0feb7`](https://github.com/humbertogontijo/python-roborock/commit/bf0feb7ee8bc9933232e8235e6efa92a451ee19e))
20+
21+
422
## v2.8.1 (2024-12-18)
523

624
### Bug Fixes

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "python-roborock"
3-
version = "2.8.1"
3+
version = "2.8.3"
44
description = "A package to control Roborock vacuums."
55
authors = ["humbertogontijo <humbertogontijo@users.noreply.github.com>"]
66
license = "GPL-3.0-only"

roborock/code_mappings.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -306,6 +306,15 @@ class RoborockMopModeS8MaxVUltra(RoborockMopModeCode):
306306
smart_mode = 306
307307

308308

309+
class RoborockMopModeQRevoMaster(RoborockMopModeCode):
310+
standard = 300
311+
deep = 301
312+
custom = 302
313+
deep_plus = 303
314+
fast = 304
315+
smart_mode = 306
316+
317+
309318
class RoborockMopIntensityCode(RoborockEnum):
310319
"""Describes the mop intensity of the vacuum cleaner."""
311320

roborock/containers.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
RoborockMopModeS7,
4040
RoborockMopModeS8MaxVUltra,
4141
RoborockMopModeS8ProUltra,
42+
RoborockMopModeQRevoMaster,
4243
RoborockStartType,
4344
RoborockStateCode,
4445
)
@@ -577,6 +578,7 @@ class Q7MaxStatus(Status):
577578
class QRevoMasterStatus(Status):
578579
fan_power: RoborockFanSpeedQRevoMaster | None = None
579580
water_box_mode: RoborockMopIntensityQRevoMaster | None = None
581+
mop_mode: RoborockMopModeQRevoMaster | None = None
580582

581583

582584
@dataclass

0 commit comments

Comments
 (0)