AWTRIX 灯光开关接入 homeassistant 教程

尝试过用api接入到苹果快捷方式进行开关,自己在想是否可以接入到homeassistant,尝试了下果然可以。

各位只需要把以下代码复制到homeass ,configuration.yaml文件里面就可以正常使用了。

注意:吧[AWTRIX-SERVER_IP]改成你AWTRIX的IP地址。

API参考地址:https://docs.blueforcer.de/#/v2/api?id=timer

因为作者在API 里面多加了个空格我找了好一会的问题。。。

论坛没办法用专用格式,各位复制的时候自己注意下 空格 和 横杠
yaml 下载
light.yml.zip (802 字节)

light:

  • platform: template
    lights:
    theater_volume:
    friendly_name: Steam
    turn_on:
    service: shell_command.turn_on_123
    turn_off:
    service: shell_command.turn_off_541

shell_command:
turn_off_541: ‘curl --header “Content-Type: application/json” --request POST --data {“power”:false} http://[AWTRIX-SERVER_IP]:7000/api/v3/basics’
turn_on_123: ‘curl --header “Content-Type: application/json” --request POST --data {“power”:true} http://[AWTRIX-SERVER_IP]:7000/api/v3/basics’

注意空格格式标准。参考如下图片

light.yml.zip (802 字节)

不错,把http的弄出来