From 5ee9803ced1ce9f9b8ee67c2b575ed1221442194 Mon Sep 17 00:00:00 2001 From: Thomas55555 <59625598+Thomas55555@users.noreply.github.com> Date: Sat, 22 Jun 2024 18:40:48 +0200 Subject: [PATCH] Add services for Husqvarna Automower (#32731) Co-authored-by: c0ffeeca7 <38767475+c0ffeeca7@users.noreply.github.com> --- .../husqvarna_automower.markdown | 25 +++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/source/_integrations/husqvarna_automower.markdown b/source/_integrations/husqvarna_automower.markdown index dcc25a568a2..1a6d27a5db7 100644 --- a/source/_integrations/husqvarna_automower.markdown +++ b/source/_integrations/husqvarna_automower.markdown @@ -153,10 +153,31 @@ The integration will create the following sensors: ### Switch +#### Avoid (if available) + +The integration will create a switch for each stay-out zone defined for your mower. When the switch is on, the mower avoids the corresponding zone. When the switch is off, the mower enters the corresponding zone. + #### Enable schedule The integration will create a switch to enable or disable the schedule of the mower. If the switch is on, the mower will mow according to the schedule. If the switch is off the mower will return to the dock and park until further notice. -#### Avoid (if available) +## Services -The integration will create a switch for each stay-out zone defined for your mower. When the switch is on, the mower avoids the corresponding zone. When the switch is off, the mower enters the corresponding zone. +The integration offers the following services: + +### Override schedule + +With this service, you can let your mower mow or park for a given time. You can select the override mode with the `override_mode“ attribute. This will override all your schedules during this time. The duration can be given in days, hours and/or minutes. The values for the duration have to be between 1 minute and 42 days. Seconds will be ignored. + +```yaml +# Replace with the name of your mower. +service: husqvarna_automower.override_schedule +target: + entity_id: lawn_mower. +data: + duration: + days: 1 + hours: 12 + minutes: 30 + override_mode: mow ### alternative: `park` +```