File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -163,6 +163,7 @@ class RoborockFanSpeedS6Pure(RoborockFanPowerCode):
163
163
balanced = 102
164
164
turbo = 103
165
165
max = 104
166
+ custom = 106
166
167
167
168
168
169
class RoborockFanSpeedQ7Max (RoborockFanPowerCode ):
@@ -226,6 +227,16 @@ class RoborockMopIntensityV2(RoborockMopIntensityCode):
226
227
custom = 207
227
228
228
229
230
+ class RoborockMopIntensityS5Max (RoborockMopIntensityCode ):
231
+ """Describes the mop intensity of the vacuum cleaner."""
232
+
233
+ off = 200
234
+ low = 201
235
+ medium = 202
236
+ high = 203
237
+ custom = 204
238
+
239
+
229
240
class RoborockDockErrorCode (RoborockEnum ):
230
241
"""Describes the error code of the dock."""
231
242
Original file line number Diff line number Diff line change 22
22
RoborockFanSpeedS7 ,
23
23
RoborockFanSpeedS7MaxV ,
24
24
RoborockMopIntensityCode ,
25
+ RoborockMopIntensityS5Max ,
25
26
RoborockMopIntensityS7 ,
26
27
RoborockMopIntensityV2 ,
27
28
RoborockMopModeCode ,
@@ -309,7 +310,7 @@ class S4MaxStatus(Status):
309
310
@dataclass
310
311
class S5MaxStatus (Status ):
311
312
fan_power : Optional [RoborockFanSpeedS6Pure ] = None
312
- water_box_mode : Optional [RoborockMopIntensityV2 ] = None
313
+ water_box_mode : Optional [RoborockMopIntensityS5Max ] = None
313
314
314
315
315
316
@dataclass
You can’t perform that action at this time.
0 commit comments