_Component to integrate with IDM heat pumps._
Note: Your heat pump needs to have the Navigator 2.0 control unit. Other versions of the control unit may not work correctly.
This component will set up the following platforms.
Platform | Description |
---|---|
binary_sensor |
Show on/off-type info from the heat pump. |
sensor |
Show other info from the heat pump. |
The integration communicates with the heat pump via Modbus TCP. Before Home Assistant can connect to the heat pump you need to make sure Modbus TCP is enabled on the heat pump.
[!IMPORTANT] If Modbus TCP is not enabled, the integration will fail to connect, even if the web UI of the heat pump is reachable via it given IP or hostname.
kodebach/hacs-idm-heatpump
with category "Integration" as a Custom Repository.The integration now appears like any other Home Assistant integration. To set it up, follow these steps:
For further configuration you can click "Configure" on the settings page for the integration.
Status Ladepumpe:
This value is reported as a percentage in the IDM interface, but has a range of -1 to 100, with -1 meaning "pump is off", 0 meaning "pump running at minimum speed" and 100 meaning "pump running at maximum speed".
To avoid confusion about the what -1% means and how values between 0 and 100 should be interpreted, this integration reports the value without unit and leaves interpretation to the user.
You may want to add extra sensor to your configuration.yaml
file to get more sensible data:
binary_sensor:
- platform: threshold # use a threshold sensor to check whether charge pump is active
name: "Ladepumpe aktiv"
entity_id: sensor.heatpump_status_ladepumpe # replace with your entity id
upper: 0
Note: It may be that your heat pump does not have variable speed charge pumps, in which case you probably would only see the values -1 and 100. The binary sensor above will still work for that case. For the other cases it is harder, because other than -1 meaning "power off" and 0-100 "power on at some speed", IDM documentation doesn't say how values should be interpreted. However, we can make some guesses for the two common types of variable speed pumps:
- 0-10 V controlled pumps: The 0-100 value probably maps directly to the 0-10 V signal, either
0->0,x->x/10,100->10
or0->10,x->10-x/10,100->0
, depending on whether 10 V or 0 V is for maximum speed.- PWM controlled pumps: The 0-100 value probably indicates the PWM duty cycle as a percentage. Again, it could be 0 or 100 that mean PWM always active, depending on what the pump interprets as "run at maximum speed". These conversions could be done with a template sensor in
configuration.yaml
.
0
from the heat pump is interpreted as X and 1
is interpreted as Y.
The special value 0xFFFF
/-1
is interpreted as "not available", any other value (e.g. -1
) is interpreted as "unknown".
This is a bit of a guess, since the documentation from IDM does not give any information for these sensors (other than that they exist), but this interpretation works correctly for my setup.If you want to contribute to this please read the Contribution guidelines