Hello ,
I have dash buttons (with known IP and MAC Address) working previously on a Rpi3 B with Rasspbian and Dasher. I was using it mainly for triggering notifications from IFTTT (with maker channel) to add data to an excel sheet and also to trigger mobile notifications. My Dasher config files looks like this
{"buttons":[
{
"name": "Doorbell",
"address": "b4:7c:9c:00:9c:xx",
"url": "https://maker.ifttt.com/trigger/Open_Main_Door/with/key/<<my key>>",
"method": "POST"
},
{
"name": "Good_points",
"address": "fc:a6:67:4c:c4:xx",
"url": "https://maker.ifttt.com/trigger/ilsa_good/with/key/<<my key>>",
"method": "POST"
},
{
"name": "Bad_points",
"address": "fc:a6:67:9a:74:xx",
"url": "https://maker.ifttt.com/trigger/ilsa_bad/with/key<<my key>>",
"method": "POST"
}
]}
Now when I am considering moving to HA for all automations and IoT interfacing, I thought of using Dasshio within Hassio 0.84.6 .
Have been able to install it correctly and added the following to my configurations.yaml
trusted_networks:
- 127.0.0.1
- 192.168.10.0/24
- 172.17.0.0/16 # Example Docker bridge - change to your relevent ip subnet range.
- 172.30.32.0/23 # Example Docker hassio - change to your relevent ip subnet range.
In the HassIo addon configuration window, i tried replicating my old configuration as below
{
"timeout": 20,
"buttons": [
{
"name": "DoorBell",
"address": "b4:7c:9c:00:9c:xx",
"url": "https://maker.ifttt.com/trigger/Open_Main_Door/with/key/<<mykey>>"
"method": "POST"
}
]
}
When I press the start button , I get the following messages in the log, hence the addon never starts.
2018-12-28 17:53:52,514 | INFO | Reading config file: /data/options.json
2018-12-28 17:53:52,518 | ERROR | Parameter error for button 1: No config [url], [body], [headers] or [domain], [service], [service_data] provided
2018-12-28 17:53:52,519 | INFO | Exiting...
Would appreciate if someone can review the configuration and guide for possible troubleshooting. The reason i need to use Dash with HA is to be able to call internal HA (domanis - native services) as well as outside world services and web-hooks.
Thanks for the replis.