Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- mqtt:
- switch:
- - unique_id: "f344abf5-e7e8-42e9-ab88-12ad60125fdd"
- name: "Block cooling"
- icon: "mdi:snowflake-off"
- availability_topic: "wpu5g/lwt"
- payload_available: "online"
- payload_not_available: "offline"
- enabled_by_default: false
- value_template: "{{ 'ON' if value_json['Free cooling mode blocked'] == '1' else 'OFF' }}"
- command_topic: "wpu5g/cmd"
- payload_on: '{
- "manual_operation_index":34,
- "manual_operation_datatype":0,
- "manual_operation_value":0,
- "manual_operation_checked":1
- }'
- payload_off: '{
- "manual_operation_index":34,
- "manual_operation_datatype":0,
- "manual_operation_value":1,
- "manual_operation_checked":0
- }'
- device:
- identifiers: "wpu5g"
- - unique_id: "96c0d747-a46d-44db-9c3b-5c5a4f1e064d"
- name: "Block heating"
- icon: "mdi:radiator-off"
- availability_topic: "wpu5g/lwt"
- payload_available: "online"
- payload_not_available: "offline"
- enabled_by_default: false
- value_template: "{{ 'ON' if value_json['CV mode blocked'] == '1' else 'OFF' }}"
- command_topic: "wpu5g/cmd"
- payload_on: '{
- "manual_operation_index":30,
- "manual_operation_datatype":0,
- "manual_operation_value":0,
- "manual_operation_checked":1
- }'
- payload_off: '{
- "manual_operation_index":30,
- "manual_operation_datatype":0,
- "manual_operation_value":0,
- "manual_operation_checked":0
- }'
- device:
- identifiers: "wpu5g"
- sensor:
- - unique_id: "6b93b27d-5672-4e1d-9fac-88ef5ee92cbd"
- name: "Status"
- icon: "mdi:heat-pump"
- state_topic: "wpu5g/ithostatus"
- value_template: >
- {% set value = value_json['Status'] | int %}
- {% if value == 0 %}
- Initializing
- {% elif value == 1 %}
- Off
- {% elif value == 2 %}
- Heating
- {% elif value == 3 %}
- Tap water
- {% elif value == 4 %}
- Cooling
- {% elif value == 5 %}
- Venting
- {% else %}
- {{ value }}
- {% endif %}
- device:
- identifiers: "wpu5g"
- manufacturer: "Itho Daalderop"
- model: "WPU 5G (3,5 kW)"
- hw_version: "NON-CVE 1"
- sw_version: "2.9.0-beta9"
- configuration_url: "http://wpu5g.lan.smit-tech.nl"
- - unique_id: "e50c2ab4-cbc2-4164-8233-f05a6de52b49"
- name: "Sub status"
- icon: "mdi:subdirectory-arrow-right"
- state_topic: "wpu5g/ithostatus"
- value_template: >
- {% set value = value_json['Sub_status'] | int %}
- {% if value == 0 %}
- Pre-run CH/DHW pump
- {% elif value == 1 %}
- Compressor power on delay
- {% elif value == 2 %}
- Pre-run well pump
- {% elif value == 3 %}
- Pressure equalizing
- {% elif value == 4 %}
- Close expansion valve
- {% elif value == 5 %}
- Expansion valve start position
- {% elif value == 6 %}
- Open CO well valve
- {% elif value == 7 %}
- Run
- {% elif value == 8 %}
- Controlled stop
- {% elif value == 9 %}
- Electric element only
- {% elif value == 10 %}
- Post-run
- {% else %}
- {{ value }}
- {% endif %}
- device:
- identifiers: "wpu5g"
- - unique_id: "449ba558-28a6-4fa4-b30d-9acd1130ea04"
- name: "Thermostat mode"
- icon: "mdi:thermostat-box"
- state_topic: "wpu5g/ithostatus"
- value_template: >
- {% if value_json['ECO selected on thermostat'] == 1 %}Eco{% endif %}
- {% if value_json['Comfort selected on thermostat'] == 1 %}Comfort{% endif %}
- {% if value_json['Boiler boost from thermostat'] == 1 %}Boost{% endif %}
- {% if value_json['Venting from thermostat'] == 1 %}Venting{% endif %}
- {% if value_json['Tariff low from thermostat'] == 1 %}Low{% endif %}
- {% if value_json['Boiler blocked from thermostat'] == 1 %}Off{% endif %}
- device:
- identifiers: "wpu5g"
- - unique_id: "a897b550-4f9c-4c2f-894a-9b161d14e04a"
- name: "Compressor mode"
- state_topic: "wpu5g/ithostatus"
- value_template: >
- {% if value_json['Compressor blocked'] == 1 %}Block{% endif %}
- {% if value_json['Compressor in Cv mode'] == 1 %}CV{% endif %}
- {% if value_json['Compressor in boiler mode'] == 1 %}Boiler{% endif %}
- device:
- identifiers: "wpu5g"
- - unique_id: "a196812d-502b-49f1-92cf-8efe89324362"
- name: "Task active"
- icon: "mdi:play"
- state_topic: "wpu5g/ithostatus"
- value_template: >
- {% set value = value_json['Task active'] | int %}
- {% if value == 0 %}
- Rate determined by gateway
- {% elif value == 1 %}
- Compressor blocked
- {% elif value == 2 %}
- -
- {% elif value == 3 %}
- CV element released
- {% elif value == 4 %}
- DHW element released
- {% elif value == 5 %}
- Remote bleeding
- {% elif value == 6 %}
- Remote boiler mode MFT active
- {% elif value == 7 %}
- Remote CV mode MFT active
- {% elif value == 8 %}
- Remote bleeding MFT active
- {% elif value == 9 %}
- Remote setpoint MFT active
- {% elif value == 10 %}
- Remote forced CH active
- {% elif value == 11 %}
- Remote overruled MFT flags
- {% else %}
- {{ value }}
- {% endif %}
- device:
- identifiers: "wpu5g"
- - unique_id: "d89a6e10-fb4f-4e7e-b9c2-1beb0677454c"
- name: "Tariff"
- icon: "mdi:currency-usd"
- state_topic: "wpu5g/ithostatus"
- value_template: >
- {% set value = value_json['Tariff'] | int %}
- {% if value == 0 %}
- High
- {% elif value == 1 %}
- Low
- {% endif %}
- device:
- identifiers: "wpu5g"
- - unique_id: "add14339-7331-4a27-8c45-22255ba9a871"
- name: "Outside"
- icon: "mdi:heat-pump"
- unit_of_measurement: "°C"
- device_class: "temperature"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Outside temp (°C)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "8a237fc7-3ab5-4c8b-93eb-7f758a27afa2"
- name: "Boiler temp down"
- icon: "mdi:temperature-celsius"
- unit_of_measurement: "°C"
- device_class: "temperature"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Boiler temp down (°C)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "93654b03-1eb7-4979-9e01-653c869084c4"
- name: "Boiler temp up"
- icon: "mdi:temperature-celsius"
- unit_of_measurement: "°C"
- device_class: "temperature"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Boiler temp up (°C)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "6b653174-6739-441e-9a5c-d145c0284db6"
- name: "Evaporator"
- icon: "mdi:temperature-celsius"
- unit_of_measurement: "°C"
- device_class: "temperature"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Evaporator temp (°C)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "a05f91be-08fe-4673-a388-bede8a2a9862"
- name: "Suction gas"
- icon: "mdi:temperature-celsius"
- unit_of_measurement: "°C"
- device_class: "temperature"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Suction gas temp (°C)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "d711dbe2-39b2-4660-aae8-343ac98f7122"
- name: "Compressed gas"
- icon: "mdi:temperature-celsius"
- unit_of_measurement: "°C"
- device_class: "temperature"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Compressed gas temp (°C)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "b248b03e-5db5-415d-a73a-f11e13372804"
- name: "Liquid"
- icon: "mdi:temperature-celsius"
- unit_of_measurement: "°C"
- device_class: "temperature"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Liquid temp (°C)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "1077fe01-2af7-4573-83e9-04246814d1a8"
- name: "Temp to well"
- icon: "mdi:temperature-celsius"
- unit_of_measurement: "°C"
- device_class: "temperature"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Temp to source (°C)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "1dd83198-8ca7-490f-8a86-5866b7c0e5b8"
- name: "Temp from well"
- icon: "mdi:temperature-celsius"
- unit_of_measurement: "°C"
- device_class: "temperature"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Temp from source (°C)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "3cbb2924-5849-429d-9800-6ee825e66130"
- name: "CV supply"
- icon: "mdi:temperature-celsius"
- unit_of_measurement: "°C"
- device_class: "temperature"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['CV supply temp (°C)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "3b827175-f15e-41ce-b471-56db4282071c"
- name: "CV return"
- icon: "mdi:temperature-celsius"
- unit_of_measurement: "°C"
- device_class: "temperature"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['CV return temp (°C)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "c7fdb644-09a3-4f18-9f46-d817878cf224"
- name: "CV pressure"
- icon: "mdi:gauge"
- unit_of_measurement: "bar"
- device_class: "pressure"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['CV pressure (Bar)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "803c8a3f-a1b8-433e-a8d6-16e5b94c9e3d"
- name: "Compressor current"
- icon: "mdi:current-ac"
- unit_of_measurement: "A"
- device_class: "current"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Compressor current (A)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "9ce8c86f-35c6-41de-b0bf-6f0811951913"
- name: "Current e-element"
- icon: "mdi:current-ac"
- unit_of_measurement: "A"
- device_class: "current"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Current e-element (A)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "eea02ce3-3c95-4242-8bac-a913ce5e18db"
- name: "Pressure switch"
- icon: "mdi:switch"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Pressure switch'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "e0f13eb1-863a-48d9-bcf2-788a54756820"
- name: "Condensation protection"
- icon: "mdi:shield-check"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Condensation protection'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "b98b3fe3-6f76-48e4-afbc-66919627f46f"
- name: "Spare input"
- icon: "mdi:plus-box"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Spare input'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "5b72228f-224d-40ad-93bb-215ae8989369"
- name: "Correction measurement delta well temperature"
- icon: "mdi:delta"
- unit_of_measurement: "K"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Correction measurement delta source temperature (K)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "e96b82f1-b843-4c99-ae4a-9cf3271420bc"
- name: "Flow"
- icon: "mdi:water"
- unit_of_measurement: "lt/hr"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Flow sensor (lt_hr)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "fd1467fd-043f-42f3-90f1-8e22af39049f"
- name: "Phase detection"
- icon: "mdi:waveform"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Phase detection'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "38758139-3be4-47d0-ae58-017ac12a1075"
- name: "CV pump"
- icon: "mdi:pump"
- unit_of_measurement: "%"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Cv pump (%)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "72e181b3-f117-4916-a8db-79d074c255e7"
- name: "Well pump"
- icon: "mdi:pump"
- unit_of_measurement: "%"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Well pump (%)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "1db76252-f939-4e42-94bf-923cf9a0969f"
- name: "Boiler pump"
- icon: "mdi:pump"
- unit_of_measurement: "%"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Boiler pump (%)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "9ae44eff-6260-4ec4-b02f-e180905e75f8"
- name: "Free cooling valve"
- icon: "mdi:valve"
- unit_of_measurement: "%"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Free cooling valve (%)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "4b32ebc0-6087-470d-a35f-a2661d852e55"
- name: "CV_DHW or cooling temp valve"
- icon: "mdi:valve"
- unit_of_measurement: "%"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['CV_DHW or cooling temp valve (%)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "090df697-3928-4f0f-8480-65e4f948e99a"
- name: "Compressor"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Compressor'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "be5a2a42-ab0b-469e-abde-8685d6843b78"
- name: "Element"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Element'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "a6525fad-119f-4638-a562-d44a846ebd13"
- name: "Trickle heating"
- icon: "mdi:radiator"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Trickle heating'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "d1525a62-0f9d-4837-9fd7-f832ef46ec07"
- name: "Error"
- icon: "mdi:alert-circle"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Error'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "0252e45c-228e-4420-8b48-03a2954a1d0c"
- name: "Free cooling"
- icon: "mdi:snowflake"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Free cooling'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "b8fb15ff-a082-499d-bc6d-24b87b720f68"
- name: "Expansion valve"
- icon: "mdi:valve"
- unit_of_measurement: "pls"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Expansion valve (pls)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "072968ae-0413-4865-9eeb-2d629029e6e8"
- name: "Room temp"
- icon: "mdi:thermometer"
- unit_of_measurement: "°C"
- device_class: "temperature"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Room temp (°C)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "5c01cce3-7572-4439-bc63-dd3b16d7ae54"
- name: "Requested room temp"
- icon: "mdi:thermometer"
- unit_of_measurement: "°C"
- device_class: "temperature"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Requested room temp (°C)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "7403730e-4b09-4817-ae5c-b13a113c7095"
- name: "Heat demand thermost"
- icon: "mdi:thermostat"
- unit_of_measurement: "%"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Heat demand thermost. (%)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "a36de684-7ec2-48ef-957d-9cc890ae283e"
- name: "Blockage"
- icon: "mdi:block-helper"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Blockage'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "fabf952a-e40d-475f-8b01-0911ac53fd2e"
- name: "Calculated evaporation temp CV"
- icon: "mdi:calculator"
- unit_of_measurement: "°C"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Calculated evaporation temp CV (°C)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "5b8a86a3-5467-48b5-9dee-860ba620c674"
- name: "Calculated CV condensation"
- icon: "mdi:calculator"
- unit_of_measurement: "°C"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Calculated CV condensation temp (°C)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "712edbbb-e594-492d-b195-37b9e2f2ee98"
- name: "Waiting time permanently released element"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Waiting time permanently released element (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "14a7f671-f0c1-4a2d-bc74-239594382682"
- name: "Well flow glycol compensation"
- icon: "mdi:water-pump"
- unit_of_measurement: "l/h"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Source flow glycol compensation (l_h)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "71487c6b-51f8-4e38-8f53-9b8b041641ef"
- name: "Error found"
- icon: "mdi:alert-octagon"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Error_found'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "efd863ca-4147-4eff-8bfa-4bb8c9451622"
- name: "Error retry"
- icon: "mdi:restart"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Error_retry'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "f8ea1957-e584-43e8-986c-d9cb7dc0cae5"
- name: "Manual operation"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Manual operation'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "35bacfc9-6157-496f-be0b-bee1731a8dc0"
- name: "Compressor block"
- icon: "mdi:lock"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Compr block (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "97be712f-8f50-4afe-83fb-ddc1a7f0176d"
- name: "Electric block"
- icon: "mdi:lock"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Elek block (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "ac157828-89ea-4f31-9bc9-c043505ad53a"
- name: "pre/post run CV pump"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Cv for _ naddraai (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "c6c1fc0b-21c5-4d5a-aa90-66176a15d365"
- name: "pre/post run well pump"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Source for _ nadraai (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "e055fa92-443c-467a-ae2b-489127c82cc0"
- name: "pre/post run DHW pump"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Boiler for _ nadraai (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "3c9d9306-3cab-4a8f-ba9d-66572ec23680"
- name: "Delay electric"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Delay electr (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "2f39e9ae-ed3f-43c4-957b-64280a5f7044"
- name: "Min running time compr"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Min running time compr (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "e3fbd40c-bbdc-4b65-9f15-32d00e556469"
- name: "Drain"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Drain time (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "e329f06f-9f45-4cd9-a7ca-29ead5e779f5"
- name: "EV pressure offset"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['EV pressure offset (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "40743d04-ac45-4a10-9b58-86e4edd0570a"
- name: "EV adjust"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['EV adjust (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "2526a354-f45e-46cf-b549-e77c561838a5"
- name: "Free cooling interval"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Free cooling interval (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "cda6ec32-14a4-4053-be57-392759d56179"
- name: "Manual control"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Manual control (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "4fc6cdd0-017c-4554-a376-9c67b9e9984d"
- name: "Low pressure timer"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Low pressure timer (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "7cede8f6-1ea3-4693-af38-a7b52c288ad8"
- name: "Compressor start"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Compressor start (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "c53d0309-fd09-41da-acca-d74ec7b3e33f"
- name: "Compr power on delay"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Compr power on delay (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "98dc0198-88d9-4519-a348-4aab3ff7474f"
- name: "Delay cv start"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Delay cv start (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "4c8328cb-5137-4be4-86da-55a87e14bf35"
- name: "Delay cv stop"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Delay cv stop (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "37cef5cf-611d-4364-bf00-432156235fff"
- name: "Adaptive timer"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Adaptive timer (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "1ecbe6f3-8aa4-474a-a94a-9e22ce6a6442"
- name: "Adaptive overheat"
- icon: "mdi:thermometer"
- unit_of_measurement: "K"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Adaptive overheat (K)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "3e009dc2-ed56-4d79-b7d3-740454f21210"
- name: "Adaptive FIFO index"
- icon: "mdi:numeric"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['adaptive fifo index'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "8abfb1ef-9531-439b-a6bb-5fa3b4999aeb"
- name: "Fault highest priority"
- icon: "mdi:alert-circle"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Fault highest priority'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "98d47c65-fe6b-4c29-9f86-46082b98d79f"
- name: "Max CV return"
- icon: "mdi:thermometer"
- unit_of_measurement: "°C"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Max CV return temp (°C)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "da3e41a3-350b-4e7d-a578-775d5c8f1063"
- name: "Well pump speed free cooling mode"
- unit_of_measurement: "%"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Source pump speed free cooling mode'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "0e3e7640-068a-4104-9b97-4fc43dcd925b"
- name: "Element in CV mode"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Element in CV mode'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "4e146efa-005f-4c2d-b5f7-786151cc46f7"
- name: "Element in boiler mode"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Element in boiler mode'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "311ec049-052d-42fa-a230-ab18a8bfdf55"
- name: "CV mode blocked"
- icon: "mdi:alert"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['CV mode blocked'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "18c63cc3-24fd-436c-92df-cc24290bdd38"
- name: "Boiler mode blocked"
- icon: "mdi:alert"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Boiler mode blocked'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "e6b79615-c596-4aaf-b297-5e1e9464c2a2"
- name: "Free cooling mode blocked"
- icon: "mdi:alert"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Free cooling mode blocked'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "41ed4958-8701-4676-8be2-1feb1f35acbd"
- name: "Bleeding mode blocked"
- icon: "mdi:alert"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Bleeding mode blocked'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "3d8ccde7-79ae-4851-81fd-d36e8c8cbad2"
- name: "Electrical element blocked"
- icon: "mdi:alert"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Electr element blocked'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "4e0f34c8-cb75-4036-8718-8836ef1c7f99"
- name: "Electrical element DHW blocked"
- icon: "mdi:alert"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Electr element DHW blocked'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "b2a8e24a-4f2e-42aa-89b6-9ef0f13e2987"
- name: "Off mode active"
- icon: "mdi:power"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Off mode active'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "dd2353af-e511-4692-9cbf-c3a11d774c35"
- name: "CV mode active"
- icon: "mdi:check-circle"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['CV mode active'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "7cd3f2ef-47e5-410f-94c4-f9f1c55b6ac2"
- name: "Boiler mode active"
- icon: "mdi:check-circle"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Boiler mode active'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "2e1cc7a0-a6ad-4a97-8956-a0114ac2ddf3"
- name: "Free cooling mode active"
- icon: "mdi:check-circle"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Free cooling mode active'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "c4b89393-60b8-4f85-9f6a-0d1345c4d80a"
- name: "CV pump prime"
- icon: "mdi:pump"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['CV pump prime'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "fb6d6643-7abe-4b61-be43-2b00c8f18d41"
- name: "Well pump prime"
- icon: "mdi:pump"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Well pump prime'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "b2b45ee9-1fc6-409c-9d14-605fdba78de6"
- name: "Element released"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Element released'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "9e0956c7-2c3d-4805-804d-bcb75dd04219"
- name: "Additional cooling release"
- icon: "mdi:snowflake"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Additional cooling release'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "080b7ad6-d11b-4742-935e-1ba51b58785e"
- name: "CV enabled"
- icon: "mdi:checkbox-marked-circle"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['CV enabled'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "1806f49e-db5b-4586-85a6-507c52dec6b7"
- name: "Free cooling enabled"
- icon: "mdi:snowflake-check"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Free cooling enabled'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "49ee999a-ff0c-484b-8b52-4be3e0df5b3e"
- name: "Heat demand total"
- icon: "mdi:thermometer-lines"
- unit_of_measurement: "%"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Heat demand total (%)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "13401d0f-3c70-4ccc-8f32-3fbce3abee9e"
- name: "E-consumption during stand-by"
- icon: "mdi:flash"
- unit_of_measurement: "kWh"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['E-consumption during stand-by (kWh)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "7fe02978-c2b8-4b76-8184-f962f5a54855"
- name: "E-consumption during heating"
- icon: "mdi:flash"
- unit_of_measurement: "kWh"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['E-consumption during heating (kWh)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "b8068d32-0a10-4e6a-951a-81b92fcdedc6"
- name: "E-consumption during DHW"
- icon: "mdi:flash"
- unit_of_measurement: "kWh"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['E-consumption during DHW (kWh)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "aa0ea019-b40a-4de4-b736-7f21a8708181"
- name: "E-consumption during cooling"
- icon: "mdi:flash"
- unit_of_measurement: "kWh"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['E-consumption during cooling (kWh)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "3db09117-2915-4f11-b99e-9121aa6deaeb"
- name: "Preheat tap water"
- icon: "mdi:water-boiler"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Preheat tap water'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "a6b34a80-a4ad-4fd6-b0eb-111c133ef25b"
- name: "Element blocked during retry"
- icon: "mdi:alert"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Element blocked during retry'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "6006f878-c8cd-4563-b109-f7692bbf0b95"
- name: "Pi error well flow"
- icon: "mdi:alert"
- unit_of_measurement: "errors"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Pi error sourceflow'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "b96c9d33-ed64-43f6-9161-d59d1dae5bbd"
- name: "Current well valve position"
- icon: "mdi:valve"
- unit_of_measurement: "%"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Current source valve position (%)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "130f4b72-6e6c-48ea-9c23-1f0e3aaea28c"
- name: "Free cooling block"
- icon: "mdi:timer"
- unit_of_measurement: "min"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Free cooling block time (min)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "15536222-243a-44e8-bc8a-e80cea265819"
- name: "Cooling temp control valve setpoint"
- icon: "mdi:valve"
- unit_of_measurement: "%"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Cooling temp control valve setpoint (%)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "de93ed94-7775-4809-9251-e2ee54763d91"
- name: "CO valve position"
- icon: "mdi:valve"
- unit_of_measurement: "%"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['CO valve position (%)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "30d55901-d666-47f5-81d7-825aa37b3e70"
- name: "HRU blowout"
- icon: "mdi:thermometer"
- unit_of_measurement: "°C"
- device_class: "temperature"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['HRU blowout temp (°C)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "b5725cc6-d200-4f0e-8e97-43e2902df5cd"
- name: "HRU blowout flow"
- icon: "mdi:air-filter"
- unit_of_measurement: "m3/h"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['HRU blowout flow (m3_h)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "827bc940-ff49-4651-9f22-237089873bf7"
- name: "Regeneration active"
- icon: "mdi:recycle"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Regeneration active'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "f49168ec-e452-4256-80be-a330935162b5"
- name: "Latest valid souwellrce supply"
- icon: "mdi:thermometer"
- unit_of_measurement: "°C"
- device_class: "temperature"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Latest valid source supply temp. (°C)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "0cb501fa-87ad-4f46-89d0-a29c14428008"
- name: "Well pump flow setpoint"
- icon: "mdi:pump"
- unit_of_measurement: "l/h"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Source pump flow setpoint (l_h)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "804de720-4808-411d-bf40-b376d1da175b"
- name: "Well pump speed at compr"
- unit_of_measurement: "%"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Well pump speed at compr (%)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "d9065919-b7ba-4f12-82f1-aaf2b3d0a875"
- name: "Well pump speed at free cooling"
- unit_of_measurement: "%"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Source pump speed at free cooling (%)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "fcfd8449-4e10-40e3-9bcf-8b681605cf79"
- name: "Well pump speed at airreg"
- unit_of_measurement: "%"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Well pump speed at airreg (%)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "fded415c-3578-4ac8-a214-41c031782d34"
- name: "Free cooling mode"
- icon: "mdi:snowflake"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Free cooling mode'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "0561aa89-3768-48e9-9597-a89d404aca17"
- name: "Time CO valve start position"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Time CO valve start position (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "e7f195d6-f2b7-4117-bac9-fd5380afff1c"
- name: "Minimum release time external cooling"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Minimum release time external cooling (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "e5e93232-76ba-40f2-9c62-9759ace73556"
- name: "Block time-release external cooling"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Block time-release external cooling (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "10932604-a321-499f-9428-91bcbf93c331"
- name: "External heating release"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['External heating release time (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "4ea2cb6e-2350-4693-9019-003a72441e3c"
- name: "Blocking time trickle low after power-up"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Blocking time trickle low after power-up (sec.)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "0b1b3dfb-636f-4bba-bf03-fb82c229bbcc"
- name: "Blocking time trickle low after CV operation"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Blocking time trickle low after CV operation (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "6e206c2c-7196-42d4-aa20-e44a3164ade8"
- name: "Block time pre-heating tap water"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Block time pre-heating tap water (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "a153caeb-233a-42ac-a85b-aeef5a55188d"
- name: "Slow start well pump"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Slow start well pump (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "76589462-4c46-4976-8083-b91cb31ee418"
- name: "Well return temperature too low"
- icon: "mdi:thermometer-alert"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Source return temperature too low (sec.)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "21d0d439-8faf-48b3-b683-d74292a2399e"
- name: "Well flow control period"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Source flow control period (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "1857dfa3-b5d7-4ea4-973d-12b9b01cbcdf"
- name: "Stabilisation waiting time-free cooling"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Stabilisation waiting time-free cooling (sec.)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "1ac4b21f-2707-452d-80c1-3445b49cfbff"
- name: "Minimum time for preheating potable water"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Minimum time for preheating potable water (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "a645a739-91f1-4f47-80d4-175c587246f0"
- name: "Maximum time for preheating potable water"
- icon: "mdi:timer"
- unit_of_measurement: "sec"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Maximum time for preheating potable water (sec)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "40064e52-00b1-4585-be80-bcff03e2629f"
- name: "Electrical element release"
- icon: "mdi:timer"
- unit_of_measurement: "min"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Electrical element release (min)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "eea7c788-ca31-4ef1-896a-91d9a6266cf4"
- name: "CH pump runtime"
- icon: "mdi:pump"
- unit_of_measurement: "h"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['CH pump on (h)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "e9e9ca50-51d9-450e-8323-94ac285ce964"
- name: "Well pump runtime"
- icon: "mdi:pump"
- unit_of_measurement: "h"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Source pump on (h)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "72f7c7aa-a3ab-481e-bfac-b5a61aebe643"
- name: "DHW pump runtime"
- icon: "mdi:pump"
- unit_of_measurement: "h"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['DHW pump on (h)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "b529e585-d1eb-4f2b-90f7-3fae0ea035b1"
- name: "Compressor runtime"
- unit_of_measurement: "h"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Compressor on (h)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "d888bcad-4be5-40c9-9de2-b004a068916d"
- name: "Electrical element runtime"
- unit_of_measurement: "h"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Electrical element on (h)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "a8c9cb74-f2aa-4127-871e-8b2b79aca173"
- name: "CH mode"
- icon: "mdi:radiator"
- unit_of_measurement: "h"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['CH mode (h)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "3358654e-9eb1-40cc-a0f5-dda85de9cfc2"
- name: "DHW mode"
- icon: "mdi:water-boiler"
- unit_of_measurement: "h"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['DHW mode (h)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "b709644c-69d1-41db-bad7-fc9c469d1c27"
- name: "Free cooling mode"
- icon: "mdi:snowflake"
- unit_of_measurement: "h"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Free cooling mode (h)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "b081010a-6531-4478-a136-df265548c3a9"
- name: "Total runtime"
- icon: "mdi:timer"
- unit_of_measurement: "h"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Total runtime (h)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "a74adfcf-7ac2-4d94-98f3-deeb39bff7f5"
- name: "CH pump starts"
- icon: "mdi:counter"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['CH pump starts'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "72afcd6c-feed-4708-b1cf-c1a879bb6f06"
- name: "Well pump starts"
- icon: "mdi:counter"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Source pump starts'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "9989b83b-923f-40b1-b061-02e0fc8469d3"
- name: "DHW pump starts"
- icon: "mdi:counter"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['DHW pump starts'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "3dd5e637-70f9-41ed-9541-cc53b50c340f"
- name: "Compressor starts"
- icon: "mdi:counter"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Compressor starts'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "ac2df89c-a52a-4157-aed4-24a66f11076a"
- name: "Electrical element starts"
- icon: "mdi:counter"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Electrical element starts'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "e087c334-7e7c-4636-af1c-a956f71603ad"
- name: "CH mode starts"
- icon: "mdi:counter"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['CH mode starts'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "52fc46ac-5c76-4456-be35-3b62c77168e7"
- name: "DHW mode starts"
- icon: "mdi:counter"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['DHW mode starts'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "1727ef67-cc9e-4cba-a2d1-25c8905af6ec"
- name: "Free cooling starts"
- icon: "mdi:counter"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Free cooling starts'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "9cefcf7a-f4e2-4585-99a3-9b66901cec9a"
- name: "System starts"
- icon: "mdi:counter"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['System starts'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "75fef086-5520-409f-a28b-8041dbe60de1"
- name: "DHW element runtime"
- icon: "mdi:water-boiler"
- unit_of_measurement: "h"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['DHW element on (h)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "a389e2cf-5dcf-4551-a2bf-09d7367fc2b9"
- name: "DHW element starts"
- icon: "mdi:water-boiler"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['DHW element starts'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "43035db1-92d8-41e3-bf55-a6d470b1411a"
- name: "E-consumption stand-by"
- icon: "mdi:flash"
- unit_of_measurement: "kWh"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['E-consumption stand-by (kWh)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "f04552e5-59f1-45ee-bc67-a31d1fdebe89"
- name: "E-consumption heating"
- icon: "mdi:flash"
- unit_of_measurement: "kWh"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['E-consumption heating (kWh)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "0415ed33-8121-4692-9878-68f8c85161bb"
- name: "E-consumption DHW"
- icon: "mdi:flash"
- unit_of_measurement: "kWh"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['E-consumption DHW (kWh)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "655824ad-afcc-43ab-82c2-f44f645f2fd5"
- name: "E-consumption cooling"
- icon: "mdi:flash"
- unit_of_measurement: "kWh"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['E-consumption cooling (kWh)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "e66983df-2c9b-4ef3-8504-de91015c4957"
- name: "Energy out of well"
- icon: "mdi:flash"
- unit_of_measurement: "MWh"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Energy out of source (MWh)'] }}"
- device:
- identifiers: "wpu5g"
- - unique_id: "8113b2c9-87d4-4491-910d-75857af31d57"
- name: "Energy returned to well"
- icon: "mdi:flash"
- unit_of_measurement: "MWh"
- state_topic: "wpu5g/ithostatus"
- value_template: "{{ value_json['Energy returned to source (MWh)'] }}"
- device:
- identifiers: "wpu5g"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement