We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7473a9 commit cddf881Copy full SHA for cddf881
roborock/data/b01_q10/b01_q10_code_mappings.py
@@ -119,13 +119,19 @@ class B01_Q10_DP(RoborockModeEnum):
119
120
121
class YXFanLevel(RoborockModeEnum):
122
+ """The fan or vacuum level of the robot.
123
+
124
+ Note: The names used here are the v1 names, though the values
125
+ have different aliases in the app bundles.
126
+ """
127
128
UNKNOWN = "unknown", -1
- OFF = "off", 0
129
+ OFF = "off", 0 # close
130
QUIET = "quiet", 1
- BALANCED = "balanced", 2
- TURBO = "turbo", 3
131
+ BALANCED = "balanced", 2 # normal
132
+ TURBO = "turbo", 3 # strong
133
MAX = "max", 4
- MAX_PLUS = "max_plus", 8
134
+ MAX_PLUS = "max_plus", 8 # super
135
136
137
class YXWaterLevel(RoborockModeEnum):
0 commit comments