Hey - new here but having some trouble with getting all my lightwaverf devices to function properly on OpenHAB and thought it was time to ask.
I have setup a new raspberry pi 3 with openhab (on Jessie with MQTT) but coming across some issues with lightwaverf now I try get the items/sitemap setup for it.
Basically I have two light switches and 1 radiator valve (and the WifiLink) which are on lightwaverf - I have installed the bindings and managed to get my two dimmers working but the radiator valve is not pulling any info through, and when looking at the openhab log I am guessing this is why -
2016-06-23 14:59:04.414 [ERROR] [l.internal.LightwaveRfWifiLink] - Error converting message: *!{“trans”:69,“mac”:“20:3E:E0”,“time”:1466697544,“prod”:“valve”,“serial”:“913FFE”,“router”:“203EE0”,“type”:“temp”,“batt”:3.09,“ver”:57,“state”:“run”,“cTemp”:21.0,“cTarg”:18.5,“output”:0,“nTarg”:20.0,“nSlot”:“17:00”,“prof”:4}
So it looks like openhab is receiving the info (temperatures, battery state etc.) but because of the ‘error converting message’ its not actually importing any values.
Here is my item bindings if that helps -
/* Heating */
Number RadiatorCTemp “Radiator [%.1f C]” (FF_Office, Heating) { lightwaverf=“room=1,serial=913FFE,type=HEATING_CURRENT_TEMP,poll=1800” }
Number RadiatorSTemp “Radiator Set Temp [%.1f C]” (FF_Office, Heating) { lightwaverf=“room=1,serial=913FFE,type=HEATING_SET_TEMP” }
Number RadiatorBatt “Radiator Battery [%.2f]” (FF_Office, Heating) { lightwaverf=“room=1,serial=913FFE,type=HEATING_BATTERY” }
String RadiatorMode “Radiator [%s]” (FF_Office, Heating) { lightwaverf=“room=1,serial=913FFE,type=HEATING_MODE” }
DateTime RadDate “Radiator Updated [%1$tT, %1$tF]” (FF_Office, Heating) { lightwaverf=“room=1,serial=913FFE,type=UPDATETIME” }
Has anyone else got this working properly or come across a similar issue?