
Originally Posted by
Springgreens
Hi thanks for getting back.
Definately no zone4 in the devices.json. I'll get on with some debugging and pick it up at github.
Actually it was seeing zone_heat_demand messages similar to above in the screenshot on your github that got me on to this.
I'll also try with Domoticz as Bruce suggests.
I just realised that I hadn't spelt out the devices.json file structure in the github README with the correct nuances for the HCC80R UFH controller.
The HCC80R messages seems to send it's own zone number (i.e. as per the lights on the HCC80R) and do not seem to correspond to the controller's zone ID. For example, the first zone on my HCC80R is for the dining room, the second is the kitchen etc. The HCC80R then sends '0' for the dining room zone, '1' for kitchen etc. However, in my main evohome controller, the dining room is zone 8, and the kitchen is zone 11. To help the script show the correct zone, the device json has to include "ufh_zoneId" as a parameter, e.g:
Code:
"34:015243": { "name" : "Dining room", "zoneId": 8, "ufh_zoneId":0, "zoneMaster": true },
"34:112193": { "name" : "Kitchen UFH", "zoneId": 11, "ufh_zoneId":1, "zoneMaster": true }
This may explain why the log is not showing your UFH zones correctly.