Automation to keep the Mower from stopping and running out of battery before it goes home. #218
AlohaFlyer
started this conversation in
Show and tell
Replies: 2 comments 1 reply
|
Nice, a few others have made similar automations, though not sure if they were shared on discord or not. |
1 reply
|
Could we get a copy of this as either a blueprint or yaml code block? |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I kept having a problem with my mower not returning to base. Sometimes it would lose position, then not restart, sometimes it would get kind of stuck, not just stop, then the battery would drain and it would die. So I made this automation to send it home. It has been working great for over a month now. I thought I would share.
alias: Mower - STOPPED GO HOME
description: ""
triggers:
entity_id:
to: paused
for:
hours: 0
minutes: 1
seconds: 0
entity_id:
to: Not working
for:
hours: 0
minutes: 1
seconds: 0
entity_id:
to: MODE_READY
for:
hours: 0
minutes: 1
seconds: 0
entity_id:
to: MODE_PAUSE
for:
hours: 0
minutes: 1
seconds: 0
entity_id:
below: 15
entity_id:
below: 14
entity_id:
below: 13
entity_id:
below: 12
entity_id:
below: 11
entity_id:
below: 10
entity_id:
below: 9
entity_id:
below: 8
entity_id:
below: 7
entity_id:
below: 6
entity_id:
below: 5
entity_id:
below: 4
entity_id:
below: 3
entity_id:
below: 2
conditions:
entity_id: binary_sensor.luba_vs2gq8kb_charging
state: "off"
for:
hours: 0
minutes: 0
seconds: 1
enabled: true
actions:
metadata: {}
data: {}
target:
entity_id: lawn_mower.luba_vs2gq8kb
mode: single
All reactions