This article describes how you can add your shelly binary button into Z-Way dashboard.
Requirements:
- HTTP Device in Shelly APPs
- Shelly devices
In my example below the shelly devices do not have authentication.
- Create a new HTTP Device by click to "+" button within APPS => Local Apps => HTTP Device
- Add some name to the device
- Select its type. In my case it is a switchBinary
- URL for Action on: http://<ip_address_of_shelly>/relay/<channel>?turn=on
- URL for Action off: http://<ip_address_of_shelly>/relay/<channel>?turn=off
- URL to get value: http://<ip_address_of_shelly>/relay/<channel>/status
- Inline javascript to parse incoming data to 'on'/'off' strings: $$.ison ? "on" : "off"
- Interval in seconds between polling requests: can be anything. In my case it is 5 seconds
- HTTP method: GET
- HTTP method to get value: GET
- Update value on action: ticked
Configuration Example: