@@ -108,6 +108,7 @@ class RoborockErrorCode(RoborockEnum):
108108
109109class RoborockFanPowerCode (RoborockEnum ):
110110 """Describes the fan power of the vacuum cleaner."""
111+
111112 # Fan speeds should have the first letter capitalized - as there is no way to change the name in translations as
112113 # far as I am aware
113114
@@ -182,6 +183,7 @@ class RoborockMopModeCode(RoborockEnum):
182183
183184class RoborockMopModeS7 (RoborockMopModeCode ):
184185 """Describes the mop mode of the vacuum cleaner."""
186+
185187 standard = 300
186188 deep = 301
187189 custom = 302
@@ -201,6 +203,7 @@ class RoborockMopIntensityCode(RoborockEnum):
201203
202204class RoborockMopIntensityS7 (RoborockMopIntensityCode ):
203205 """Describes the mop intensity of the vacuum cleaner."""
206+
204207 off = 200
205208 mild = 201
206209 moderate = 202
@@ -210,6 +213,7 @@ class RoborockMopIntensityS7(RoborockMopIntensityCode):
210213
211214class RoborockMopIntensityV2 (RoborockMopIntensityCode ):
212215 """Describes the mop intensity of the vacuum cleaner."""
216+
213217 off = 200
214218 low = 201
215219 medium = 202
@@ -219,6 +223,7 @@ class RoborockMopIntensityV2(RoborockMopIntensityCode):
219223
220224class RoborockDockErrorCode (RoborockEnum ):
221225 """Describes the error code of the dock."""
226+
222227 ok = 0
223228 water_empty = 38
224229 waste_water_tank_full = 39
@@ -234,6 +239,7 @@ class RoborockDockTypeCode(RoborockEnum):
234239
235240class RoborockDockDustCollectionModeCode (RoborockEnum ):
236241 """Describes the dust collection mode of the vacuum cleaner."""
242+
237243 # TODO: Get the correct values for various different docks
238244 missing = - 9999
239245 smart = 0
@@ -244,6 +250,7 @@ class RoborockDockDustCollectionModeCode(RoborockEnum):
244250
245251class RoborockDockWashTowelModeCode (RoborockEnum ):
246252 """Describes the wash towel mode of the vacuum cleaner."""
253+
247254 # TODO: Get the correct values for various different docks
248255 missing = - 9999
249256 light = 0
0 commit comments