21.10.2016, 12:23
(This post was last modified: 21.10.2016, 12:24 by gjniewenhuijse.)
In my zwave app i connect a groupaddress to write and read the setpoint temp (4 bytes).
But my visualisation software (domovea) needs a 2 byte 9.001 datatype.
How to convert this data on a gentle way?
I have
4/5/1 setpoint temp to_from zwave (4 byte)
4/5/2 setpoint temp to_from domovea (2 byte)
I can make two event scripts:
on 4/5/1: grp.write('4/5/2', event.getvalue())
on 4/5/2: grp.write('4/5/1', event.getvalue())
But then i get a continues loop of writes.
How to make it possible that i can set my setpoint in domovea and in the termostat (over zwave)?
But my visualisation software (domovea) needs a 2 byte 9.001 datatype.
How to convert this data on a gentle way?
I have
4/5/1 setpoint temp to_from zwave (4 byte)
4/5/2 setpoint temp to_from domovea (2 byte)
I can make two event scripts:
on 4/5/1: grp.write('4/5/2', event.getvalue())
on 4/5/2: grp.write('4/5/1', event.getvalue())
But then i get a continues loop of writes.
How to make it possible that i can set my setpoint in domovea and in the termostat (over zwave)?