|
本帖最后由 zding 于 2018-4-7 11:45 编辑
前置需求:tasker,HA
tasker(开灯):
配置文件--事件--传感器--晃动--选择(例如左右摇晃),添加任务(light on):网络--http post--服务器端口:https://你的ha-ip:8123/api/services/light/turn_on?api_password=你的HA密码。
数据/文件:
{
"entity_id": "light.yeelight_rgb_xxxxxx","brightness":"255","rgb_color":[255,0,255]
}
内容类型:
application/json
信任任意证书:打钩
tasker(关灯):
配置文件--事件--传感器--晃动--选择(例如上下摇晃),添加任务(light off):网络--http post--服务器端口:https://你的ha-ip:8123/api/services/light/turn_off?api_password=你的HA密码。
数据/文件:
{
"entity_id": "light.yeelight_rgb_xxxxxx"
}
内容类型:
application/json
信任任意证书:打钩
|
评分
-
查看全部评分
|