Skip to content

Commit

Permalink
Merge pull request #28 from Nornode/patch-1
Browse files Browse the repository at this point in the history
Lower minimum allowed Fan RPM.
  • Loading branch information
eriknn authored Dec 1, 2023
2 parents 3183a65 + a11fb69 commit a7aad78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/pax_ble/number.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

OptionsTuple = namedtuple('options', ['min_value', 'max_value', 'step'])
OPTIONS = {}
OPTIONS["fanspeed"] = OptionsTuple(800, 2400, 25)
OPTIONS["fanspeed"] = OptionsTuple(500, 2400, 25)
OPTIONS["temperature"] = OptionsTuple(15, 30, 1)
OPTIONS["boostmodesec"] = OptionsTuple(60, 900, 1)
OPTIONS["boostmodespeed"] = OptionsTuple(1000, 2400, 25)
Expand Down

0 comments on commit a7aad78

Please sign in to comment.