Skip to content

Commit

Permalink
Update Hydrawise maximum watering duration to meet the app limits (#1…
Browse files Browse the repository at this point in the history
…36050)

Co-authored-by: Robert Resch <[email protected]>
  • Loading branch information
2 people authored and frenck committed Jan 24, 2025
1 parent d9e6549 commit 7af7219
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion homeassistant/components/hydrawise/binary_sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class HydrawiseBinarySensorEntityDescription(BinarySensorEntityDescription):
)

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 = {
vol.Required("until"): cv.datetime,
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/hydrawise/services.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ start_watering:
selector:
number:
min: 0
max: 90
max: 1440
unit_of_measurement: min
mode: box
suspend:
Expand Down

0 comments on commit 7af7219

Please sign in to comment.