alertover注册和配置
- 注册alertover
- 添加组织, 记录发送源ID和接收组ID
- 下载安装alertover手机客户端,测试能正常工作。
配置HomeAssistant
- 从https://github.com/cloudswave/HomeAssistant/tree/master/custom_components 下载notify,放到
custom_components
目录下 - 配置
configuration.yaml
,加入并配置 发送源id
notify:
- name: my_notify
platform: alert_over
from_source: !你的发送源id
- 配置
automations.yaml
, 加入并配置接收组id
- alias: notify publish
#trigger: # 时间触发器
#at: '8:00'
#platform: time
trigger:
platform: homeassistant # 系统启动触发器
# Event can also be 'shutdown'
event: start
action:
service: notify.my_notify
data:
title: 提示
message: '智能家居系统已经启动'
target: !你的接收组id
重启homeassistant服务
最后的效果是:homeassistant服务重启后会推送一个
智能家居系统已经启动
的消息给客户端。也可以在界面上手动触发测试。