We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5879989 commit 05443d5Copy full SHA for 05443d5
1 file changed
roborock/devices/traits/v1/status.py
@@ -21,6 +21,16 @@ class StatusTrait(StatusV2, common.V1TraitMixin):
21
the latest data from the device. You must pass in the device feature trait
22
to this trait so that the dynamic attributes can be pre-determined.
23
24
+ The current dynamic attributes are:
25
+ - Fan Speed
26
+ - Water Mode
27
+ - Mop Route
28
+
29
+ You should call the _options() version of the attribute to know which are supported for your device
30
+ (i.e. fan_speed_options())
31
+ Then you can call the _mapping to convert an int value to the actual Enum. (i.e. fan_speed_mapping())
32
+ You can call the _name property to get the str value of the enum. (i.e. fan_speed_name)
33
34
"""
35
36
command = RoborockCommand.GET_STATUS
0 commit comments