Skip to content

Commit

Permalink
Merge pull request #104 from rmassch/feat/extend-boost-timer-limits
Browse files Browse the repository at this point in the history
feat: change boost timeout limits
  • Loading branch information
rmassch authored Nov 27, 2024
2 parents 9b26050 + 421e8b8 commit 30d7cb5
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 30d7cb5

Please sign in to comment.