Skip to content

Commit

Permalink
feat: change boost timeout limits
Browse files Browse the repository at this point in the history
  • Loading branch information
rmassch committed Nov 27, 2024
1 parent 9b26050 commit 421e8b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/healthbox/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
{
vol.Required(cv.CONF_DEVICE_ID): cv.string,
vol.Required("boost_level"): vol.All(int, vol.Range(min=10, max=200)),
vol.Required("boost_timeout"): vol.All(int, vol.Range(min=5, max=240)),
vol.Required("boost_timeout"): vol.All(int, vol.Range(min=5, max=720)),
}
)

Expand Down
2 changes: 1 addition & 1 deletion custom_components/healthbox/services.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ start_room_boost:
selector:
number:
min: 5
max: 240
max: 720
step: 1
mode: slider
unit_of_measurement: minutes
Expand Down

0 comments on commit 421e8b8

Please sign in to comment.