Created
September 5, 2024 19:53
-
-
Save mikey0000/0cc2d7505a2e3b5fe6831688f7aa7726 to your computer and use it in GitHub Desktop.
Automation sample for alerting a user when their Mammotion lawm mower is locked.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias: Mower Locked Alert | |
trigger: | |
- platform: state | |
entity_id: | |
- sensor.luba_2_activity_mode | |
to: MODE_LOCK | |
action: | |
- action: notify.mobile_app_my_phone | |
data: | |
title: WARNING Mower Locked! | |
message: Lift sensor triggered | |
data: | |
image: /local/warning.png | |
channel: alarm_stream | |
tag: mower_alert | |
importance: max | |
visibility: public | |
notification_icon: mdi:robot-mower | |
clickAction: /home/mower | |
ttl: 0 | |
priority: high | |
color: red |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is helpful.