I am trying to program a Fibaro Dimmer using Open Remote and z-way running on a Raspberry Pi
Using an http command I can set the dimmer to any desired level and I can link this command to a button which works.
When I want to use a slider to control the dimmer I need to be able to read the value from the dimmer, this works with an HTTP command executed directly e.g.
http://10.0.0.61:8083/ZWaveAPI/Run/devices[2].instances[0].SwitchBinary.data.level.value
returns a number in the range 0-99 as you would expect.
If I create a label to display this number I first create a command attached to the dimmer
Name ReadLevel
Protocol HTTP
URL http://10.0.0.61:8083/ZWaveAPI/Run/devices[3].instances[0].SwitchMultilevel.data.level.value
HTTP Method POST
Polling interval 2s
and then create a sensor
Name Test
Command ReadLevel
Type custom
Finally create a label using the Test Sensor as it’s source
However I never get anything other than N/A displayed in the label
Could someone give me an example of how this should work?