From 421e8b89a5505d06a730988c7ce2df96e5d7240c Mon Sep 17 00:00:00 2001 From: rmassch <1083135+rmassch@users.noreply.github.com> Date: Wed, 27 Nov 2024 18:32:23 +0000 Subject: [PATCH] feat: change boost timeout limits --- custom_components/healthbox/const.py | 2 +- custom_components/healthbox/services.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/custom_components/healthbox/const.py b/custom_components/healthbox/const.py index 0437382..cdbd630 100644 --- a/custom_components/healthbox/const.py +++ b/custom_components/healthbox/const.py @@ -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)), } ) diff --git a/custom_components/healthbox/services.yaml b/custom_components/healthbox/services.yaml index 6798110..04c624d 100644 --- a/custom_components/healthbox/services.yaml +++ b/custom_components/healthbox/services.yaml @@ -28,7 +28,7 @@ start_room_boost: selector: number: min: 5 - max: 240 + max: 720 step: 1 mode: slider unit_of_measurement: minutes