Skip to content

Commit

Permalink
sort fan speeds by meaning (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
edenhaus authored Dec 2, 2021
1 parent b76d4e3 commit 7606eeb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion deebot_client/commands/fan_speed.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,11 @@
class FanSpeedLevel(DisplayNameIntEnum):
"""Enum class for all possible fan speed levels."""

# Values should be sort from low to high on their meanings
QUIET = 1000
NORMAL = 0
MAX = 1
MAX_PLUS = 2, "max+"
QUIET = 1000


class GetFanSpeed(_NoArgsCommand):
Expand Down

0 comments on commit 7606eeb

Please sign in to comment.