File tree Expand file tree Collapse file tree 4 files changed +30
-1
lines changed
Expand file tree Collapse file tree 4 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " python-roborock"
3- version = " 2.8.1 "
3+ version = " 2.8.3 "
44description = " A package to control Roborock vacuums."
55authors = [" humbertogontijo <humbertogontijo@users.noreply.github.com>" ]
66license = " GPL-3.0-only"
Original file line number Diff line number Diff 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+
309318class RoborockMopIntensityCode (RoborockEnum ):
310319 """Describes the mop intensity of the vacuum cleaner."""
311320
Original file line number Diff line number Diff line change 3939 RoborockMopModeS7 ,
4040 RoborockMopModeS8MaxVUltra ,
4141 RoborockMopModeS8ProUltra ,
42+ RoborockMopModeQRevoMaster ,
4243 RoborockStartType ,
4344 RoborockStateCode ,
4445)
@@ -577,6 +578,7 @@ class Q7MaxStatus(Status):
577578class 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
You can’t perform that action at this time.
0 commit comments