Skip to content

Commit 7606eeb

Browse files
authored
sort fan speeds by meaning (#40)
1 parent b76d4e3 commit 7606eeb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

deebot_client/commands/fan_speed.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@
1010
class FanSpeedLevel(DisplayNameIntEnum):
1111
"""Enum class for all possible fan speed levels."""
1212

13+
# Values should be sort from low to high on their meanings
14+
QUIET = 1000
1315
NORMAL = 0
1416
MAX = 1
1517
MAX_PLUS = 2, "max+"
16-
QUIET = 1000
1718

1819

1920
class GetFanSpeed(_NoArgsCommand):

0 commit comments

Comments
 (0)