mirror of
https://github.com/home-assistant/core.git
synced 2025-07-21 20:27:08 +00:00
Update Hydrawise maximum watering duration to meet the app limits (#136050)
Co-authored-by: Robert Resch <robert@resch.dev>
This commit is contained in:
parent
59d677ba3e
commit
b2624e6274
@ -68,7 +68,7 @@ ZONE_BINARY_SENSORS: tuple[HydrawiseBinarySensorEntityDescription, ...] = (
|
|||||||
)
|
)
|
||||||
|
|
||||||
SCHEMA_START_WATERING: VolDictType = {
|
SCHEMA_START_WATERING: VolDictType = {
|
||||||
vol.Optional("duration"): vol.All(vol.Coerce(int), vol.Range(min=0, max=90)),
|
vol.Optional("duration"): vol.All(vol.Coerce(int), vol.Range(min=0, max=1440)),
|
||||||
}
|
}
|
||||||
SCHEMA_SUSPEND: VolDictType = {
|
SCHEMA_SUSPEND: VolDictType = {
|
||||||
vol.Required("until"): cv.datetime,
|
vol.Required("until"): cv.datetime,
|
||||||
|
@ -10,7 +10,7 @@ start_watering:
|
|||||||
selector:
|
selector:
|
||||||
number:
|
number:
|
||||||
min: 0
|
min: 0
|
||||||
max: 90
|
max: 1440
|
||||||
unit_of_measurement: min
|
unit_of_measurement: min
|
||||||
mode: box
|
mode: box
|
||||||
suspend:
|
suspend:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user