Fix for Home Assistant for Qubino 3-Phase Smart Meter not receiving data for all endpoints.


If you're receiving only the totals for the Qubino 3-Phase Smart Meter is it possible that the lifeline was not configured properly at the inclusion. The 3-Phase Smart Meter is a device that needs the MC (multi channel) lifeline to be set, in case that the lifeline is set SC (single channel) the values that you get are only the totals.


The fix can be used also for other devices when adding the extra switches and other endpoints. Such as adding the sensor for the Qubino Flush 1D Relay or the extra switch for the Qubino Flush Relay, adding the IKA contactor for the Qubino Smart Meter,...


In order to fix the lifeline in Home Assistant, follow these steps:


1) Browse to the configuration for the Z-Wave network

(Configuration → Integrations → Z-Wave )


2) Find out the Qubino 3-phase Smart Meter ‘node id’, in this case Node: 21 
(Open drop down list with Nodes)



3) Change the Z-Wave Association by calling the ‘zwave.change_association): 
(Developer Tools → Tab Services)



4) To remove the existing lifeline association for the Qubino 3-Phase Smart Meter:
- call the zwave.change_association service
- with Service Data:


{
"association": "remove",
"node_id": XX,
"group": 1,
"target_node_id":1,
}

Where XX is the Node-Id for your local Qubino 3-Phase Smart Meter (see step 2). 
In this example Node-Id = 21



5) Now add a multichannel association for the Qubino 3-Phase Smart Meter

- call the zwave.change_association service (again)
- with Service Data:

{
"association": "add",
"node_id": XX,
"group": 1,
"target_node_id":1,
"instance":1
}


Where XX is the Node-Id for your local Qubino 3-Phase Smart Meter (see step 2).
In this example Node-Id = 21



6) Now the Qubino 3-Phase Smart Meter should report data for all Endpoints.


Thank you B. for sending us the step by step guide for setting the association in Home Assistant