forked from Python-roborock/python-roborock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathv1_code_mappings.py
More file actions
635 lines (515 loc) · 13.8 KB
/
v1_code_mappings.py
File metadata and controls
635 lines (515 loc) · 13.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
from typing import Self
from ..code_mappings import RoborockEnum
class RoborockFinishReason(RoborockEnum):
manual_interrupt = 21 # Cleaning interrupted by user
cleanup_interrupted = 24 # Cleanup interrupted
manual_interrupt_2 = 21
manual_interrupt_12 = 29
breakpoint = 32 # Could not continue cleaning
breakpoint_2 = 33
cleanup_interrupted_2 = 34
manual_interrupt_3 = 35
manual_interrupt_4 = 36
manual_interrupt_5 = 37
manual_interrupt_6 = 43
locate_fail = 45 # Positioning Failed
cleanup_interrupted_3 = 64
locate_fail_2 = 65
manual_interrupt_7 = 48
manual_interrupt_8 = 49
manual_interrupt_9 = 50
cleanup_interrupted_4 = 51
finished_cleaning = 52 # Finished cleaning
finished_cleaning_2 = 54
finished_cleaning_3 = 55
finished_cleaning_4 = 56
finished_clenaing_5 = 57
manual_interrupt_10 = 60
area_unreachable = 61 # Area unreachable
area_unreachable_2 = 62
washing_error = 67 # Washing error
back_to_wash_failure = 68 # Failed to return to the dock
cleanup_interrupted_5 = 101
breakpoint_4 = 102
manual_interrupt_11 = 103
cleanup_interrupted_6 = 104
cleanup_interrupted_7 = 105
cleanup_interrupted_8 = 106
cleanup_interrupted_9 = 107
cleanup_interrupted_10 = 109
cleanup_interrupted_11 = 110
patrol_success = 114 # Cruise completed
patrol_fail = 115 # Cruise failed
pet_patrol_success = 116 # Pet found
pet_patrol_fail = 117 # Pet found failed
class RoborockInCleaning(RoborockEnum):
complete = 0
global_clean_not_complete = 1
zone_clean_not_complete = 2
segment_clean_not_complete = 3
class RoborockCleanType(RoborockEnum):
all_zone = 1
draw_zone = 2
select_zone = 3
quick_build = 4
video_patrol = 5
pet_patrol = 6
class RoborockStartType(RoborockEnum):
button = 1
app = 2
schedule = 3
mi_home = 4
quick_start = 5
voice_control = 13
routines = 101
alexa = 801
google = 802
ifttt = 803
yandex = 804
homekit = 805
xiaoai = 806
tmall_genie = 807
duer = 808
dingdong = 809
siri = 810
clova = 811
wechat = 901
alipay = 902
aqara = 903
hisense = 904
huawei = 905
widget_launch = 820
smart_watch = 821
class RoborockDssCodes(RoborockEnum):
@classmethod
def _missing_(cls: type[Self], key) -> Self:
# If the calculated value is not provided, then it should be viewed as okay.
# As the math will sometimes result in you getting numbers that don't matter.
return cls.okay # type: ignore
class ClearWaterBoxStatus(RoborockDssCodes):
"""Status of the clear water box."""
okay = 0
out_of_water = 1
out_of_water_2 = 38
refill_error = 48
class DirtyWaterBoxStatus(RoborockDssCodes):
"""Status of the dirty water box."""
okay = 0
full_not_installed = 1
full_not_installed_2 = 39
drain_error = 49
class DustBagStatus(RoborockDssCodes):
"""Status of the dust bag."""
okay = 0
not_installed = 1
full = 34
class CleanFluidStatus(RoborockDssCodes):
"""Status of the cleaning fluid container."""
empty_not_installed = 1
okay = 2
class RoborockErrorCode(RoborockEnum):
none = 0
lidar_blocked = 1
bumper_stuck = 2
wheels_suspended = 3
cliff_sensor_error = 4
main_brush_jammed = 5
side_brush_jammed = 6
wheels_jammed = 7
robot_trapped = 8
no_dustbin = 9
strainer_error = 10 # Filter is wet or blocked
compass_error = 11 # Strong magnetic field detected
low_battery = 12
charging_error = 13
battery_error = 14
wall_sensor_dirty = 15
robot_tilted = 16
side_brush_error = 17
fan_error = 18
dock = 19 # Dock not connected to power
optical_flow_sensor_dirt = 20
vertical_bumper_pressed = 21
dock_locator_error = 22
return_to_dock_fail = 23
nogo_zone_detected = 24
visual_sensor = 25 # Camera error
light_touch = 26 # Wall sensor error
vibrarise_jammed = 27
robot_on_carpet = 28
filter_blocked = 29
invisible_wall_detected = 30
cannot_cross_carpet = 31
internal_error = 32
collect_dust_error_3 = 34 # Clean auto-empty dock
collect_dust_error_4 = 35 # Auto empty dock voltage error
mopping_roller_1 = 36 # Wash roller may be jammed
mopping_roller_error_2 = 37 # wash roller not lowered properly
clear_water_box_hoare = 38 # Check the clean water tank
dirty_water_box_hoare = 39 # Check the dirty water tank
sink_strainer_hoare = 40 # Reinstall the water filter
clear_water_box_exception = 41 # Clean water tank empty
clear_brush_exception = 42 # Check that the water filter has been correctly installed
clear_brush_exception_2 = 43 # Positioning button error
filter_screen_exception = 44 # Clean the dock water filter
mopping_roller_2 = 45 # Wash roller may be jammed
up_water_exception = 48
drain_water_exception = 49
temperature_protection = 51 # Unit temperature protection
clean_carousel_exception = 52
clean_carousel_water_full = 53
water_carriage_drop = 54
check_clean_carouse = 55
audio_error = 56
class RoborockFanPowerCode(RoborockEnum):
"""Describes the fan power of the vacuum cleaner."""
# Fan speeds should have the first letter capitalized - as there is no way to change the name in translations as
# far as I am aware
class RoborockFanSpeedV1(RoborockFanPowerCode):
silent = 38
standard = 60
medium = 77
turbo = 90
class RoborockFanSpeedV2(RoborockFanPowerCode):
silent = 101
balanced = 102
turbo = 103
max = 104
gentle = 105
auto = 106
class RoborockFanSpeedV3(RoborockFanPowerCode):
silent = 38
standard = 60
medium = 75
turbo = 100
class RoborockFanSpeedE2(RoborockFanPowerCode):
gentle = 41
silent = 50
standard = 68
medium = 79
turbo = 100
class RoborockFanSpeedS7(RoborockFanPowerCode):
off = 105
quiet = 101
balanced = 102
turbo = 103
max = 104
custom = 106
class RoborockFanSpeedS7MaxV(RoborockFanPowerCode):
off = 105
quiet = 101
balanced = 102
turbo = 103
max = 104
custom = 106
max_plus = 108
class RoborockFanSpeedS6Pure(RoborockFanPowerCode):
gentle = 105
quiet = 101
balanced = 102
turbo = 103
max = 104
custom = 106
class RoborockFanSpeedQ7Max(RoborockFanPowerCode):
quiet = 101
balanced = 102
turbo = 103
max = 104
class RoborockFanSpeedQRevoMaster(RoborockFanPowerCode):
off = 105
quiet = 101
balanced = 102
turbo = 103
max = 104
custom = 106
max_plus = 108
smart_mode = 110
class RoborockFanSpeedQRevoCurv(RoborockFanPowerCode):
quiet = 101
balanced = 102
turbo = 103
max = 104
off = 105
custom = 106
max_plus = 108
smart_mode = 110
class RoborockFanSpeedQRevoMaxV(RoborockFanPowerCode):
off = 105
quiet = 101
balanced = 102
turbo = 103
max = 104
custom = 106
max_plus = 108
smart_mode = 110
class RoborockFanSpeedP10(RoborockFanPowerCode):
off = 105
quiet = 101
balanced = 102
turbo = 103
max = 104
custom = 106
max_plus = 108
smart_mode = 110
class RoborockFanSpeedS8MaxVUltra(RoborockFanPowerCode):
off = 105
quiet = 101
balanced = 102
turbo = 103
max = 104
custom = 106
max_plus = 108
smart_mode = 110
class RoborockFanSpeedSaros10(RoborockFanPowerCode):
off = 105
quiet = 101
balanced = 102
turbo = 103
max = 104
custom = 106
max_plus = 108
smart_mode = 110
class RoborockFanSpeedSaros10R(RoborockFanPowerCode):
off = 105
quiet = 101
balanced = 102
turbo = 103
max = 104
custom = 106
max_plus = 108
smart_mode = 110
class RoborockMopModeCode(RoborockEnum):
"""Describes the mop mode of the vacuum cleaner."""
class RoborockMopModeQRevoCurv(RoborockMopModeCode):
standard = 300
deep = 301
custom = 302
deep_plus = 303
fast = 304
smart_mode = 306
class RoborockMopModeS7(RoborockMopModeCode):
"""Describes the mop mode of the vacuum cleaner."""
standard = 300
deep = 301
custom = 302
deep_plus = 303
class RoborockMopModeS8ProUltra(RoborockMopModeCode):
standard = 300
deep = 301
deep_plus = 303
fast = 304
custom = 302
smart_mode = 306
class RoborockMopModeS8MaxVUltra(RoborockMopModeCode):
standard = 300
deep = 301
custom = 302
deep_plus = 303
fast = 304
deep_plus_pearl = 305
smart_mode = 306
class RoborockMopModeSaros10R(RoborockMopModeCode):
standard = 300
deep = 301
custom = 302
deep_plus = 303
fast = 304
smart_mode = 306
class RoborockMopModeQRevoMaster(RoborockMopModeCode):
standard = 300
deep = 301
custom = 302
deep_plus = 303
fast = 304
smart_mode = 306
class RoborockMopModeQRevoMaxV(RoborockMopModeCode):
standard = 300
deep = 301
custom = 302
deep_plus = 303
fast = 304
smart_mode = 306
class RoborockMopModeSaros10(RoborockMopModeCode):
standard = 300
deep = 301
custom = 302
deep_plus = 303
fast = 304
smart_mode = 306
class RoborockMopIntensityCode(RoborockEnum):
"""Describes the mop intensity of the vacuum cleaner."""
class RoborockMopIntensityS7(RoborockMopIntensityCode):
"""Describes the mop intensity of the vacuum cleaner."""
off = 200
mild = 201
moderate = 202
intense = 203
custom = 204
class RoborockMopIntensityV2(RoborockMopIntensityCode):
"""Describes the mop intensity of the vacuum cleaner."""
off = 200
low = 201
medium = 202
high = 203
custom = 207
class RoborockMopIntensityQRevoMaster(RoborockMopIntensityCode):
"""Describes the mop intensity of the vacuum cleaner."""
off = 200
low = 201
medium = 202
high = 203
custom = 204
custom_water_flow = 207
smart_mode = 209
class RoborockMopIntensityQRevoCurv(RoborockMopIntensityCode):
off = 200
low = 201
medium = 202
high = 203
custom = 204
custom_water_flow = 207
smart_mode = 209
class RoborockMopIntensityQRevoMaxV(RoborockMopIntensityCode):
off = 200
low = 201
medium = 202
high = 203
custom = 204
custom_water_flow = 207
smart_mode = 209
class RoborockMopIntensityP10(RoborockMopIntensityCode):
"""Describes the mop intensity of the vacuum cleaner."""
off = 200
low = 201
medium = 202
high = 203
custom = 204
custom_water_flow = 207
smart_mode = 209
class RoborockMopIntensityS8MaxVUltra(RoborockMopIntensityCode):
off = 200
low = 201
medium = 202
high = 203
custom = 204
max = 208
smart_mode = 209
custom_water_flow = 207
class RoborockMopIntensitySaros10(RoborockMopIntensityCode):
off = 200
mild = 201
standard = 202
intense = 203
extreme = 208
custom = 204
smart_mode = 209
class RoborockMopIntensitySaros10R(RoborockMopIntensityCode):
off = 200
low = 201
medium = 202
high = 203
custom = 204
extreme = 250
vac_followed_by_mop = 235
smart_mode = 209
class RoborockMopIntensityS5Max(RoborockMopIntensityCode):
"""Describes the mop intensity of the vacuum cleaner."""
off = 200
low = 201
medium = 202
high = 203
custom = 204
custom_water_flow = 207
class RoborockMopIntensityS6MaxV(RoborockMopIntensityCode):
"""Describes the mop intensity of the vacuum cleaner."""
off = 200
low = 201
medium = 202
high = 203
custom = 204
custom_water_flow = 207
class RoborockMopIntensityQ7Max(RoborockMopIntensityCode):
"""Describes the mop intensity of the vacuum cleaner."""
off = 200
low = 201
medium = 202
high = 203
custom_water_flow = 207
class RoborockDockErrorCode(RoborockEnum):
"""Describes the error code of the dock."""
ok = 0
duct_blockage = 34
water_empty = 38
waste_water_tank_full = 39
maintenance_brush_jammed = 42
dirty_tank_latch_open = 44
no_dustbin = 46
cleaning_tank_full_or_blocked = 53
class RoborockDockTypeCode(RoborockEnum):
unknown = -9999
no_dock = 0
auto_empty_dock = 1
empty_wash_fill_dock = 3
auto_empty_dock_pure = 5
s7_max_ultra_dock = 6
s8_dock = 7
p10_dock = 8
p10_pro_dock = 9
s8_maxv_ultra_dock = 10
qrevo_master_dock = 14
qrevo_s_dock = 15
saros_r10_dock = 16
qrevo_curv_dock = 17
saros_10_dock = 18
class RoborockDockDustCollectionModeCode(RoborockEnum):
"""Describes the dust collection mode of the vacuum cleaner."""
# TODO: Get the correct values for various different docks
unknown = -9999
smart = 0
light = 1
balanced = 2
max = 4
class RoborockStateCode(RoborockEnum):
unknown = 0
starting = 1
charger_disconnected = 2
idle = 3
remote_control_active = 4
cleaning = 5
returning_home = 6
manual_mode = 7
charging = 8
charging_problem = 9
paused = 10
spot_cleaning = 11
error = 12
shutting_down = 13
updating = 14
docking = 15
going_to_target = 16
zoned_cleaning = 17
segment_cleaning = 18
emptying_the_bin = 22 # on s7+
washing_the_mop = 23 # on a46
washing_the_mop_2 = 25
going_to_wash_the_mop = 26 # on a46
in_call = 28
mapping = 29
egg_attack = 30
patrol = 32
attaching_the_mop = 33 # on g20s ultra
detaching_the_mop = 34 # on g20s ultra
charging_complete = 100
device_offline = 101
locked = 103
air_drying_stopping = 202
robot_status_mopping = 6301
clean_mop_cleaning = 6302
clean_mop_mopping = 6303
segment_mopping = 6304
segment_clean_mop_cleaning = 6305
segment_clean_mop_mopping = 6306
zoned_mopping = 6307
zoned_clean_mop_cleaning = 6308
zoned_clean_mop_mopping = 6309
back_to_dock_washing_duster = 6310