Advertisement
Guest User

wpu5g

a guest
Apr 4th, 2025
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 48.20 KB | Help | 0 0
  1. mqtt:
  2.   switch:
  3.     - unique_id: "f344abf5-e7e8-42e9-ab88-12ad60125fdd"
  4.       name: "Block cooling"
  5.       icon: "mdi:snowflake-off"
  6.       availability_topic: "wpu5g/lwt"
  7.       payload_available: "online"
  8.       payload_not_available: "offline"
  9.       enabled_by_default: false
  10.       value_template: "{{ 'ON' if value_json['Free cooling mode blocked'] == '1' else 'OFF' }}"
  11.       command_topic: "wpu5g/cmd"
  12.       payload_on: '{
  13.        "manual_operation_index":34,
  14.        "manual_operation_datatype":0,
  15.        "manual_operation_value":0,
  16.        "manual_operation_checked":1
  17.      }'
  18.       payload_off: '{
  19.        "manual_operation_index":34,
  20.        "manual_operation_datatype":0,
  21.        "manual_operation_value":1,
  22.        "manual_operation_checked":0
  23.      }'
  24.       device:
  25.         identifiers: "wpu5g"
  26.  
  27.     - unique_id: "96c0d747-a46d-44db-9c3b-5c5a4f1e064d"
  28.       name: "Block heating"
  29.       icon: "mdi:radiator-off"
  30.       availability_topic: "wpu5g/lwt"
  31.       payload_available: "online"
  32.       payload_not_available: "offline"
  33.       enabled_by_default: false
  34.       value_template: "{{ 'ON' if value_json['CV mode blocked'] == '1' else 'OFF' }}"
  35.       command_topic: "wpu5g/cmd"
  36.       payload_on: '{
  37.        "manual_operation_index":30,
  38.        "manual_operation_datatype":0,
  39.        "manual_operation_value":0,
  40.        "manual_operation_checked":1
  41.      }'
  42.       payload_off: '{
  43.        "manual_operation_index":30,
  44.        "manual_operation_datatype":0,
  45.        "manual_operation_value":0,
  46.        "manual_operation_checked":0
  47.      }'
  48.       device:
  49.         identifiers: "wpu5g"
  50.  
  51.  
  52.   sensor:
  53.     - unique_id: "6b93b27d-5672-4e1d-9fac-88ef5ee92cbd"
  54.       name: "Status"
  55.       icon: "mdi:heat-pump"
  56.       state_topic: "wpu5g/ithostatus"
  57.       value_template: >
  58.         {% set value = value_json['Status'] | int %}
  59.         {% if value == 0 %}
  60.           Initializing
  61.         {% elif value == 1 %}
  62.           Off
  63.         {% elif value == 2 %}
  64.           Heating
  65.         {% elif value == 3 %}
  66.           Tap water
  67.         {% elif value == 4 %}
  68.           Cooling
  69.         {% elif value == 5 %}
  70.           Venting
  71.         {% else %}
  72.           {{ value }}
  73.         {% endif %}
  74.       device:
  75.         identifiers: "wpu5g"
  76.         manufacturer: "Itho Daalderop"
  77.         model: "WPU 5G (3,5 kW)"
  78.         hw_version: "NON-CVE 1"
  79.         sw_version: "2.9.0-beta9"
  80.         configuration_url: "http://wpu5g.lan.smit-tech.nl"
  81.  
  82.     - unique_id: "e50c2ab4-cbc2-4164-8233-f05a6de52b49"
  83.       name: "Sub status"
  84.       icon: "mdi:subdirectory-arrow-right"
  85.       state_topic: "wpu5g/ithostatus"
  86.       value_template: >
  87.         {% set value = value_json['Sub_status'] | int %}
  88.         {% if value == 0 %}
  89.           Pre-run CH/DHW pump
  90.         {% elif value == 1 %}
  91.           Compressor power on delay
  92.         {% elif value == 2 %}
  93.           Pre-run well pump
  94.         {% elif value == 3 %}
  95.           Pressure equalizing
  96.         {% elif value == 4 %}
  97.           Close expansion valve
  98.         {% elif value == 5 %}
  99.           Expansion valve start position
  100.         {% elif value == 6 %}
  101.           Open CO well valve
  102.         {% elif value == 7 %}
  103.           Run
  104.         {% elif value == 8 %}
  105.           Controlled stop
  106.         {% elif value == 9 %}
  107.           Electric element only
  108.         {% elif value == 10 %}
  109.           Post-run
  110.         {% else %}
  111.           {{ value }}
  112.         {% endif %}
  113.       device:
  114.         identifiers: "wpu5g"
  115.  
  116.     - unique_id: "449ba558-28a6-4fa4-b30d-9acd1130ea04"
  117.       name: "Thermostat mode"
  118.       icon: "mdi:thermostat-box"
  119.       state_topic: "wpu5g/ithostatus"
  120.       value_template: >            
  121.         {% if value_json['ECO selected on thermostat']  == 1 %}Eco{% endif %}
  122.         {% if value_json['Comfort selected on thermostat'] == 1 %}Comfort{% endif %}
  123.         {% if value_json['Boiler boost from thermostat'] == 1 %}Boost{% endif %}
  124.         {% if value_json['Venting from thermostat']  == 1 %}Venting{% endif %}
  125.         {% if value_json['Tariff low from thermostat'] == 1 %}Low{% endif %}
  126.         {% if value_json['Boiler blocked from thermostat'] == 1 %}Off{% endif %}
  127.       device:
  128.         identifiers: "wpu5g"
  129.  
  130.     - unique_id: "a897b550-4f9c-4c2f-894a-9b161d14e04a"
  131.       name: "Compressor mode"
  132.       state_topic: "wpu5g/ithostatus"
  133.       value_template: >
  134.         {% if value_json['Compressor blocked']  == 1 %}Block{% endif %}
  135.         {% if value_json['Compressor in Cv mode'] == 1 %}CV{% endif %}
  136.         {% if value_json['Compressor in boiler mode'] == 1 %}Boiler{% endif %}
  137.       device:
  138.         identifiers: "wpu5g"
  139.  
  140.     - unique_id: "a196812d-502b-49f1-92cf-8efe89324362"
  141.       name: "Task active"
  142.       icon: "mdi:play"
  143.       state_topic: "wpu5g/ithostatus"
  144.       value_template: >
  145.         {% set value = value_json['Task active'] | int %}
  146.         {% if value == 0 %}
  147.           Rate determined by gateway
  148.         {% elif value == 1 %}
  149.           Compressor blocked
  150.         {% elif value == 2 %}
  151.           -
  152.         {% elif value == 3 %}
  153.           CV element released
  154.         {% elif value == 4 %}
  155.           DHW element released
  156.         {% elif value == 5 %}
  157.           Remote bleeding
  158.         {% elif value == 6 %}
  159.           Remote boiler mode MFT active
  160.         {% elif value == 7 %}
  161.           Remote CV mode MFT active
  162.         {% elif value == 8 %}
  163.           Remote bleeding MFT active
  164.         {% elif value == 9 %}
  165.           Remote setpoint MFT active
  166.         {% elif value == 10 %}
  167.           Remote forced CH active
  168.         {% elif value == 11 %}
  169.           Remote overruled MFT flags
  170.         {% else %}
  171.           {{ value }}
  172.         {% endif %}
  173.       device:
  174.         identifiers: "wpu5g"
  175.  
  176.     - unique_id: "d89a6e10-fb4f-4e7e-b9c2-1beb0677454c"
  177.       name: "Tariff"
  178.       icon: "mdi:currency-usd"
  179.       state_topic: "wpu5g/ithostatus"
  180.       value_template: >
  181.         {% set value = value_json['Tariff'] | int %}
  182.         {% if value == 0 %}
  183.           High
  184.         {% elif value == 1 %}
  185.           Low
  186.         {% endif %}
  187.       device:
  188.         identifiers: "wpu5g"
  189.  
  190.     - unique_id: "add14339-7331-4a27-8c45-22255ba9a871"
  191.       name: "Outside"
  192.       icon: "mdi:heat-pump"
  193.       unit_of_measurement: "°C"
  194.       device_class: "temperature"
  195.       state_topic: "wpu5g/ithostatus"
  196.       value_template: "{{ value_json['Outside temp (°C)'] }}"
  197.       device:
  198.         identifiers: "wpu5g"
  199.  
  200.     - unique_id: "8a237fc7-3ab5-4c8b-93eb-7f758a27afa2"
  201.       name: "Boiler temp down"
  202.       icon: "mdi:temperature-celsius"
  203.       unit_of_measurement: "°C"
  204.       device_class: "temperature"
  205.       state_topic: "wpu5g/ithostatus"
  206.       value_template: "{{ value_json['Boiler temp down (°C)'] }}"
  207.       device:
  208.         identifiers: "wpu5g"
  209.  
  210.     - unique_id: "93654b03-1eb7-4979-9e01-653c869084c4"
  211.       name: "Boiler temp up"
  212.       icon: "mdi:temperature-celsius"
  213.       unit_of_measurement: "°C"
  214.       device_class: "temperature"
  215.       state_topic: "wpu5g/ithostatus"
  216.       value_template: "{{ value_json['Boiler temp up (°C)'] }}"
  217.       device:
  218.         identifiers: "wpu5g"
  219.  
  220.     - unique_id: "6b653174-6739-441e-9a5c-d145c0284db6"
  221.       name: "Evaporator"
  222.       icon: "mdi:temperature-celsius"
  223.       unit_of_measurement: "°C"
  224.       device_class: "temperature"
  225.       state_topic: "wpu5g/ithostatus"
  226.       value_template: "{{ value_json['Evaporator temp (°C)'] }}"
  227.       device:
  228.         identifiers: "wpu5g"
  229.  
  230.     - unique_id: "a05f91be-08fe-4673-a388-bede8a2a9862"
  231.       name: "Suction gas"
  232.       icon: "mdi:temperature-celsius"
  233.       unit_of_measurement: "°C"
  234.       device_class: "temperature"
  235.       state_topic: "wpu5g/ithostatus"
  236.       value_template: "{{ value_json['Suction gas temp (°C)'] }}"
  237.       device:
  238.         identifiers: "wpu5g"
  239.  
  240.     - unique_id: "d711dbe2-39b2-4660-aae8-343ac98f7122"
  241.       name: "Compressed gas"
  242.       icon: "mdi:temperature-celsius"
  243.       unit_of_measurement: "°C"
  244.       device_class: "temperature"
  245.       state_topic: "wpu5g/ithostatus"
  246.       value_template: "{{ value_json['Compressed gas temp (°C)'] }}"
  247.       device:
  248.         identifiers: "wpu5g"
  249.  
  250.     - unique_id: "b248b03e-5db5-415d-a73a-f11e13372804"
  251.       name: "Liquid"
  252.       icon: "mdi:temperature-celsius"
  253.       unit_of_measurement: "°C"
  254.       device_class: "temperature"
  255.       state_topic: "wpu5g/ithostatus"
  256.       value_template: "{{ value_json['Liquid temp (°C)'] }}"
  257.       device:
  258.         identifiers: "wpu5g"
  259.  
  260.     - unique_id: "1077fe01-2af7-4573-83e9-04246814d1a8"
  261.       name: "Temp to well"
  262.       icon: "mdi:temperature-celsius"
  263.       unit_of_measurement: "°C"
  264.       device_class: "temperature"
  265.       state_topic: "wpu5g/ithostatus"
  266.       value_template: "{{ value_json['Temp to source (°C)'] }}"
  267.       device:
  268.         identifiers: "wpu5g"
  269.  
  270.     - unique_id: "1dd83198-8ca7-490f-8a86-5866b7c0e5b8"
  271.       name: "Temp from well"
  272.       icon: "mdi:temperature-celsius"
  273.       unit_of_measurement: "°C"
  274.       device_class: "temperature"
  275.       state_topic: "wpu5g/ithostatus"
  276.       value_template: "{{ value_json['Temp from source (°C)'] }}"
  277.       device:
  278.         identifiers: "wpu5g"
  279.  
  280.     - unique_id: "3cbb2924-5849-429d-9800-6ee825e66130"
  281.       name: "CV supply"
  282.       icon: "mdi:temperature-celsius"
  283.       unit_of_measurement: "°C"
  284.       device_class: "temperature"
  285.       state_topic: "wpu5g/ithostatus"
  286.       value_template: "{{ value_json['CV supply temp (°C)'] }}"
  287.       device:
  288.         identifiers: "wpu5g"
  289.  
  290.     - unique_id: "3b827175-f15e-41ce-b471-56db4282071c"
  291.       name: "CV return"
  292.       icon: "mdi:temperature-celsius"
  293.       unit_of_measurement: "°C"
  294.       device_class: "temperature"
  295.       state_topic: "wpu5g/ithostatus"
  296.       value_template: "{{ value_json['CV return temp (°C)'] }}"
  297.       device:
  298.         identifiers: "wpu5g"
  299.  
  300.     - unique_id: "c7fdb644-09a3-4f18-9f46-d817878cf224"
  301.       name: "CV pressure"
  302.       icon: "mdi:gauge"
  303.       unit_of_measurement: "bar"
  304.       device_class: "pressure"
  305.       state_topic: "wpu5g/ithostatus"
  306.       value_template: "{{ value_json['CV pressure (Bar)'] }}"
  307.       device:
  308.         identifiers: "wpu5g"
  309.  
  310.     - unique_id: "803c8a3f-a1b8-433e-a8d6-16e5b94c9e3d"
  311.       name: "Compressor current"
  312.       icon: "mdi:current-ac"
  313.       unit_of_measurement: "A"
  314.       device_class: "current"
  315.       state_topic: "wpu5g/ithostatus"
  316.       value_template: "{{ value_json['Compressor current (A)'] }}"
  317.       device:
  318.         identifiers: "wpu5g"
  319.  
  320.     - unique_id: "9ce8c86f-35c6-41de-b0bf-6f0811951913"
  321.       name: "Current e-element"
  322.       icon: "mdi:current-ac"
  323.       unit_of_measurement: "A"
  324.       device_class: "current"
  325.       state_topic: "wpu5g/ithostatus"
  326.       value_template: "{{ value_json['Current e-element (A)'] }}"
  327.       device:
  328.         identifiers: "wpu5g"
  329.  
  330.     - unique_id: "eea02ce3-3c95-4242-8bac-a913ce5e18db"
  331.       name: "Pressure switch"
  332.       icon: "mdi:switch"
  333.       state_topic: "wpu5g/ithostatus"
  334.       value_template: "{{ value_json['Pressure switch'] }}"
  335.       device:
  336.         identifiers: "wpu5g"
  337.  
  338.     - unique_id: "e0f13eb1-863a-48d9-bcf2-788a54756820"
  339.       name: "Condensation protection"
  340.       icon: "mdi:shield-check"
  341.       state_topic: "wpu5g/ithostatus"
  342.       value_template: "{{ value_json['Condensation protection'] }}"
  343.       device:
  344.         identifiers: "wpu5g"
  345.  
  346.     - unique_id: "b98b3fe3-6f76-48e4-afbc-66919627f46f"
  347.       name: "Spare input"
  348.       icon: "mdi:plus-box"
  349.       state_topic: "wpu5g/ithostatus"
  350.       value_template: "{{ value_json['Spare input'] }}"
  351.       device:
  352.         identifiers: "wpu5g"
  353.  
  354.     - unique_id: "5b72228f-224d-40ad-93bb-215ae8989369"
  355.       name: "Correction measurement delta well temperature"
  356.       icon: "mdi:delta"
  357.       unit_of_measurement: "K"
  358.       state_topic: "wpu5g/ithostatus"
  359.       value_template: "{{ value_json['Correction measurement delta source temperature (K)'] }}"
  360.       device:
  361.         identifiers: "wpu5g"
  362.  
  363.     - unique_id: "e96b82f1-b843-4c99-ae4a-9cf3271420bc"
  364.       name: "Flow"
  365.       icon: "mdi:water"
  366.       unit_of_measurement: "lt/hr"
  367.       state_topic: "wpu5g/ithostatus"
  368.       value_template: "{{ value_json['Flow sensor (lt_hr)'] }}"
  369.       device:
  370.         identifiers: "wpu5g"
  371.  
  372.     - unique_id: "fd1467fd-043f-42f3-90f1-8e22af39049f"
  373.       name: "Phase detection"
  374.       icon: "mdi:waveform"
  375.       state_topic: "wpu5g/ithostatus"
  376.       value_template: "{{ value_json['Phase detection'] }}"
  377.       device:
  378.         identifiers: "wpu5g"
  379.  
  380.     - unique_id: "38758139-3be4-47d0-ae58-017ac12a1075"
  381.       name: "CV pump"
  382.       icon: "mdi:pump"
  383.       unit_of_measurement: "%"
  384.       state_topic: "wpu5g/ithostatus"
  385.       value_template: "{{ value_json['Cv pump (%)'] }}"
  386.       device:
  387.         identifiers: "wpu5g"
  388.  
  389.     - unique_id: "72e181b3-f117-4916-a8db-79d074c255e7"
  390.       name: "Well pump"
  391.       icon: "mdi:pump"
  392.       unit_of_measurement: "%"
  393.       state_topic: "wpu5g/ithostatus"
  394.       value_template: "{{ value_json['Well pump (%)'] }}"
  395.       device:
  396.         identifiers: "wpu5g"
  397.  
  398.     - unique_id: "1db76252-f939-4e42-94bf-923cf9a0969f"
  399.       name: "Boiler pump"
  400.       icon: "mdi:pump"
  401.       unit_of_measurement: "%"
  402.       state_topic: "wpu5g/ithostatus"
  403.       value_template: "{{ value_json['Boiler pump (%)'] }}"
  404.       device:
  405.         identifiers: "wpu5g"
  406.  
  407.     - unique_id: "9ae44eff-6260-4ec4-b02f-e180905e75f8"
  408.       name: "Free cooling valve"
  409.       icon: "mdi:valve"
  410.       unit_of_measurement: "%"
  411.       state_topic: "wpu5g/ithostatus"
  412.       value_template: "{{ value_json['Free cooling valve (%)'] }}"
  413.       device:
  414.         identifiers: "wpu5g"
  415.  
  416.     - unique_id: "4b32ebc0-6087-470d-a35f-a2661d852e55"
  417.       name: "CV_DHW or cooling temp valve"
  418.       icon: "mdi:valve"
  419.       unit_of_measurement: "%"
  420.       state_topic: "wpu5g/ithostatus"
  421.       value_template: "{{ value_json['CV_DHW or cooling temp valve (%)'] }}"
  422.       device:
  423.         identifiers: "wpu5g"
  424.  
  425.     - unique_id: "090df697-3928-4f0f-8480-65e4f948e99a"
  426.       name: "Compressor"
  427.       state_topic: "wpu5g/ithostatus"
  428.       value_template: "{{ value_json['Compressor'] }}"
  429.       device:
  430.         identifiers: "wpu5g"
  431.  
  432.     - unique_id: "be5a2a42-ab0b-469e-abde-8685d6843b78"
  433.       name: "Element"
  434.       state_topic: "wpu5g/ithostatus"
  435.       value_template: "{{ value_json['Element'] }}"
  436.       device:
  437.         identifiers: "wpu5g"
  438.  
  439.     - unique_id: "a6525fad-119f-4638-a562-d44a846ebd13"
  440.       name: "Trickle heating"
  441.       icon: "mdi:radiator"
  442.       state_topic: "wpu5g/ithostatus"
  443.       value_template: "{{ value_json['Trickle heating'] }}"
  444.       device:
  445.         identifiers: "wpu5g"
  446.  
  447.     - unique_id: "d1525a62-0f9d-4837-9fd7-f832ef46ec07"
  448.       name: "Error"
  449.       icon: "mdi:alert-circle"
  450.       state_topic: "wpu5g/ithostatus"
  451.       value_template: "{{ value_json['Error'] }}"
  452.       device:
  453.         identifiers: "wpu5g"
  454.  
  455.     - unique_id: "0252e45c-228e-4420-8b48-03a2954a1d0c"
  456.       name: "Free cooling"
  457.       icon: "mdi:snowflake"
  458.       state_topic: "wpu5g/ithostatus"
  459.       value_template: "{{ value_json['Free cooling'] }}"
  460.       device:
  461.         identifiers: "wpu5g"
  462.  
  463.     - unique_id: "b8fb15ff-a082-499d-bc6d-24b87b720f68"
  464.       name: "Expansion valve"
  465.       icon: "mdi:valve"
  466.       unit_of_measurement: "pls"
  467.       state_topic: "wpu5g/ithostatus"
  468.       value_template: "{{ value_json['Expansion valve (pls)'] }}"
  469.       device:
  470.         identifiers: "wpu5g"
  471.  
  472.     - unique_id: "072968ae-0413-4865-9eeb-2d629029e6e8"
  473.       name: "Room temp"
  474.       icon: "mdi:thermometer"
  475.       unit_of_measurement: "°C"
  476.       device_class: "temperature"
  477.       state_topic: "wpu5g/ithostatus"
  478.       value_template: "{{ value_json['Room temp (°C)'] }}"
  479.       device:
  480.         identifiers: "wpu5g"
  481.  
  482.     - unique_id: "5c01cce3-7572-4439-bc63-dd3b16d7ae54"
  483.       name: "Requested room temp"
  484.       icon: "mdi:thermometer"
  485.       unit_of_measurement: "°C"
  486.       device_class: "temperature"
  487.       state_topic: "wpu5g/ithostatus"
  488.       value_template: "{{ value_json['Requested room temp (°C)'] }}"
  489.       device:
  490.         identifiers: "wpu5g"
  491.  
  492.     - unique_id: "7403730e-4b09-4817-ae5c-b13a113c7095"
  493.       name: "Heat demand thermost"
  494.       icon: "mdi:thermostat"
  495.       unit_of_measurement: "%"
  496.       state_topic: "wpu5g/ithostatus"
  497.       value_template: "{{ value_json['Heat demand thermost. (%)'] }}"
  498.       device:
  499.         identifiers: "wpu5g"
  500.  
  501.     - unique_id: "a36de684-7ec2-48ef-957d-9cc890ae283e"
  502.       name: "Blockage"
  503.       icon: "mdi:block-helper"
  504.       state_topic: "wpu5g/ithostatus"
  505.       value_template: "{{ value_json['Blockage'] }}"
  506.       device:
  507.         identifiers: "wpu5g"
  508.  
  509.     - unique_id: "fabf952a-e40d-475f-8b01-0911ac53fd2e"
  510.       name: "Calculated evaporation temp CV"
  511.       icon: "mdi:calculator"
  512.       unit_of_measurement: "°C"
  513.       state_topic: "wpu5g/ithostatus"
  514.       value_template: "{{ value_json['Calculated evaporation temp CV (°C)'] }}"
  515.       device:
  516.         identifiers: "wpu5g"
  517.  
  518.     - unique_id: "5b8a86a3-5467-48b5-9dee-860ba620c674"
  519.       name: "Calculated CV condensation"
  520.       icon: "mdi:calculator"
  521.       unit_of_measurement: "°C"
  522.       state_topic: "wpu5g/ithostatus"
  523.       value_template: "{{ value_json['Calculated CV condensation temp (°C)'] }}"
  524.       device:
  525.         identifiers: "wpu5g"
  526.  
  527.     - unique_id: "712edbbb-e594-492d-b195-37b9e2f2ee98"
  528.       name: "Waiting time permanently released element"
  529.       icon: "mdi:timer"
  530.       unit_of_measurement: "sec"
  531.       state_topic: "wpu5g/ithostatus"
  532.       value_template: "{{ value_json['Waiting time permanently released element (sec)'] }}"
  533.       device:
  534.         identifiers: "wpu5g"
  535.  
  536.     - unique_id: "14a7f671-f0c1-4a2d-bc74-239594382682"
  537.       name: "Well flow glycol compensation"
  538.       icon: "mdi:water-pump"
  539.       unit_of_measurement: "l/h"
  540.       state_topic: "wpu5g/ithostatus"
  541.       value_template: "{{ value_json['Source flow glycol compensation (l_h)'] }}"
  542.       device:
  543.         identifiers: "wpu5g"
  544.  
  545.     - unique_id: "71487c6b-51f8-4e38-8f53-9b8b041641ef"
  546.       name: "Error found"
  547.       icon: "mdi:alert-octagon"
  548.       state_topic: "wpu5g/ithostatus"
  549.       value_template: "{{ value_json['Error_found'] }}"
  550.       device:
  551.         identifiers: "wpu5g"
  552.  
  553.     - unique_id: "efd863ca-4147-4eff-8bfa-4bb8c9451622"
  554.       name: "Error retry"
  555.       icon: "mdi:restart"
  556.       state_topic: "wpu5g/ithostatus"
  557.       value_template: "{{ value_json['Error_retry'] }}"
  558.       device:
  559.         identifiers: "wpu5g"
  560.  
  561.     - unique_id: "f8ea1957-e584-43e8-986c-d9cb7dc0cae5"
  562.       name: "Manual operation"
  563.       state_topic: "wpu5g/ithostatus"
  564.       value_template: "{{ value_json['Manual operation'] }}"
  565.       device:
  566.         identifiers: "wpu5g"
  567.  
  568.     - unique_id: "35bacfc9-6157-496f-be0b-bee1731a8dc0"
  569.       name: "Compressor block"
  570.       icon: "mdi:lock"
  571.       unit_of_measurement: "sec"
  572.       state_topic: "wpu5g/ithostatus"
  573.       value_template: "{{ value_json['Compr block (sec)'] }}"
  574.       device:
  575.         identifiers: "wpu5g"
  576.  
  577.     - unique_id: "97be712f-8f50-4afe-83fb-ddc1a7f0176d"
  578.       name: "Electric block"
  579.       icon: "mdi:lock"
  580.       unit_of_measurement: "sec"
  581.       state_topic: "wpu5g/ithostatus"
  582.       value_template: "{{ value_json['Elek block (sec)'] }}"
  583.       device:
  584.         identifiers: "wpu5g"
  585.  
  586.     - unique_id: "ac157828-89ea-4f31-9bc9-c043505ad53a"
  587.       name: "pre/post run CV pump"
  588.       icon: "mdi:timer"
  589.       unit_of_measurement: "sec"
  590.       state_topic: "wpu5g/ithostatus"
  591.       value_template: "{{ value_json['Cv for _ naddraai (sec)'] }}"
  592.       device:
  593.         identifiers: "wpu5g"
  594.  
  595.     - unique_id: "c6c1fc0b-21c5-4d5a-aa90-66176a15d365"
  596.       name: "pre/post run well pump"
  597.       icon: "mdi:timer"
  598.       unit_of_measurement: "sec"
  599.       state_topic: "wpu5g/ithostatus"
  600.       value_template: "{{ value_json['Source for _ nadraai (sec)'] }}"
  601.       device:
  602.         identifiers: "wpu5g"
  603.  
  604.     - unique_id: "e055fa92-443c-467a-ae2b-489127c82cc0"
  605.       name: "pre/post run DHW pump"
  606.       icon: "mdi:timer"
  607.       unit_of_measurement: "sec"
  608.       state_topic: "wpu5g/ithostatus"
  609.       value_template: "{{ value_json['Boiler for _ nadraai (sec)'] }}"
  610.       device:
  611.         identifiers: "wpu5g"
  612.  
  613.     - unique_id: "3c9d9306-3cab-4a8f-ba9d-66572ec23680"
  614.       name: "Delay electric"
  615.       icon: "mdi:timer"
  616.       unit_of_measurement: "sec"
  617.       state_topic: "wpu5g/ithostatus"
  618.       value_template: "{{ value_json['Delay electr (sec)'] }}"
  619.       device:
  620.         identifiers: "wpu5g"
  621.  
  622.     - unique_id: "2f39e9ae-ed3f-43c4-957b-64280a5f7044"
  623.       name: "Min running time compr"
  624.       icon: "mdi:timer"
  625.       unit_of_measurement: "sec"
  626.       state_topic: "wpu5g/ithostatus"
  627.       value_template: "{{ value_json['Min running time compr (sec)'] }}"
  628.       device:
  629.         identifiers: "wpu5g"
  630.  
  631.     - unique_id: "e3fbd40c-bbdc-4b65-9f15-32d00e556469"
  632.       name: "Drain"
  633.       icon: "mdi:timer"
  634.       unit_of_measurement: "sec"
  635.       state_topic: "wpu5g/ithostatus"
  636.       value_template: "{{ value_json['Drain time (sec)'] }}"
  637.       device:
  638.         identifiers: "wpu5g"
  639.  
  640.     - unique_id: "e329f06f-9f45-4cd9-a7ca-29ead5e779f5"
  641.       name: "EV pressure offset"
  642.       icon: "mdi:timer"
  643.       unit_of_measurement: "sec"
  644.       state_topic: "wpu5g/ithostatus"
  645.       value_template: "{{ value_json['EV pressure offset (sec)'] }}"
  646.       device:
  647.         identifiers: "wpu5g"
  648.  
  649.     - unique_id: "40743d04-ac45-4a10-9b58-86e4edd0570a"
  650.       name: "EV adjust"
  651.       icon: "mdi:timer"
  652.       unit_of_measurement: "sec"
  653.       state_topic: "wpu5g/ithostatus"
  654.       value_template: "{{ value_json['EV adjust (sec)'] }}"
  655.       device:
  656.         identifiers: "wpu5g"
  657.  
  658.     - unique_id: "2526a354-f45e-46cf-b549-e77c561838a5"
  659.       name: "Free cooling interval"
  660.       icon: "mdi:timer"
  661.       unit_of_measurement: "sec"
  662.       state_topic: "wpu5g/ithostatus"
  663.       value_template: "{{ value_json['Free cooling interval (sec)'] }}"
  664.       device:
  665.         identifiers: "wpu5g"
  666.  
  667.     - unique_id: "cda6ec32-14a4-4053-be57-392759d56179"
  668.       name: "Manual control"
  669.       icon: "mdi:timer"
  670.       unit_of_measurement: "sec"
  671.       state_topic: "wpu5g/ithostatus"
  672.       value_template: "{{ value_json['Manual control (sec)'] }}"
  673.       device:
  674.         identifiers: "wpu5g"
  675.  
  676.     - unique_id: "4fc6cdd0-017c-4554-a376-9c67b9e9984d"
  677.       name: "Low pressure timer"
  678.       icon: "mdi:timer"
  679.       unit_of_measurement: "sec"
  680.       state_topic: "wpu5g/ithostatus"
  681.       value_template: "{{ value_json['Low pressure timer (sec)'] }}"
  682.       device:
  683.         identifiers: "wpu5g"
  684.  
  685.     - unique_id: "7cede8f6-1ea3-4693-af38-a7b52c288ad8"
  686.       name: "Compressor start"
  687.       icon: "mdi:timer"
  688.       unit_of_measurement: "sec"
  689.       state_topic: "wpu5g/ithostatus"
  690.       value_template: "{{ value_json['Compressor start (sec)'] }}"
  691.       device:
  692.         identifiers: "wpu5g"
  693.  
  694.     - unique_id: "c53d0309-fd09-41da-acca-d74ec7b3e33f"
  695.       name: "Compr power on delay"
  696.       icon: "mdi:timer"
  697.       unit_of_measurement: "sec"
  698.       state_topic: "wpu5g/ithostatus"
  699.       value_template: "{{ value_json['Compr power on delay (sec)'] }}"
  700.       device:
  701.         identifiers: "wpu5g"
  702.  
  703.     - unique_id: "98dc0198-88d9-4519-a348-4aab3ff7474f"
  704.       name: "Delay cv start"
  705.       icon: "mdi:timer"
  706.       unit_of_measurement: "sec"
  707.       state_topic: "wpu5g/ithostatus"
  708.       value_template: "{{ value_json['Delay cv start (sec)'] }}"
  709.       device:
  710.         identifiers: "wpu5g"
  711.  
  712.     - unique_id: "4c8328cb-5137-4be4-86da-55a87e14bf35"
  713.       name: "Delay cv stop"
  714.       icon: "mdi:timer"
  715.       unit_of_measurement: "sec"
  716.       state_topic: "wpu5g/ithostatus"
  717.       value_template: "{{ value_json['Delay cv stop (sec)'] }}"
  718.       device:
  719.         identifiers: "wpu5g"
  720.  
  721.     - unique_id: "37cef5cf-611d-4364-bf00-432156235fff"
  722.       name: "Adaptive timer"
  723.       icon: "mdi:timer"
  724.       unit_of_measurement: "sec"
  725.       state_topic: "wpu5g/ithostatus"
  726.       value_template: "{{ value_json['Adaptive timer (sec)'] }}"
  727.       device:
  728.         identifiers: "wpu5g"
  729.  
  730.     - unique_id: "1ecbe6f3-8aa4-474a-a94a-9e22ce6a6442"
  731.       name: "Adaptive overheat"
  732.       icon: "mdi:thermometer"
  733.       unit_of_measurement: "K"
  734.       state_topic: "wpu5g/ithostatus"
  735.       value_template: "{{ value_json['Adaptive overheat (K)'] }}"
  736.       device:
  737.         identifiers: "wpu5g"
  738.  
  739.     - unique_id: "3e009dc2-ed56-4d79-b7d3-740454f21210"
  740.       name: "Adaptive FIFO index"
  741.       icon: "mdi:numeric"
  742.       state_topic: "wpu5g/ithostatus"
  743.       value_template: "{{ value_json['adaptive fifo index'] }}"
  744.       device:
  745.         identifiers: "wpu5g"
  746.  
  747.     - unique_id: "8abfb1ef-9531-439b-a6bb-5fa3b4999aeb"
  748.       name: "Fault highest priority"
  749.       icon: "mdi:alert-circle"
  750.       state_topic: "wpu5g/ithostatus"
  751.       value_template: "{{ value_json['Fault highest priority'] }}"
  752.       device:
  753.         identifiers: "wpu5g"
  754.  
  755.     - unique_id: "98d47c65-fe6b-4c29-9f86-46082b98d79f"
  756.       name: "Max CV return"
  757.       icon: "mdi:thermometer"
  758.       unit_of_measurement: "°C"
  759.       state_topic: "wpu5g/ithostatus"
  760.       value_template: "{{ value_json['Max CV return temp (°C)'] }}"
  761.       device:
  762.         identifiers: "wpu5g"
  763.  
  764.     - unique_id: "da3e41a3-350b-4e7d-a578-775d5c8f1063"
  765.       name: "Well pump speed free cooling mode"
  766.       unit_of_measurement: "%"
  767.       state_topic: "wpu5g/ithostatus"
  768.       value_template: "{{ value_json['Source pump speed free cooling mode'] }}"
  769.       device:
  770.         identifiers: "wpu5g"
  771.  
  772.     - unique_id: "0e3e7640-068a-4104-9b97-4fc43dcd925b"
  773.       name: "Element in CV mode"
  774.       state_topic: "wpu5g/ithostatus"
  775.       value_template: "{{ value_json['Element in CV mode'] }}"
  776.       device:
  777.         identifiers: "wpu5g"
  778.  
  779.     - unique_id: "4e146efa-005f-4c2d-b5f7-786151cc46f7"
  780.       name: "Element in boiler mode"
  781.       state_topic: "wpu5g/ithostatus"
  782.       value_template: "{{ value_json['Element in boiler mode'] }}"
  783.       device:
  784.         identifiers: "wpu5g"
  785.  
  786.     - unique_id: "311ec049-052d-42fa-a230-ab18a8bfdf55"
  787.       name: "CV mode blocked"
  788.       icon: "mdi:alert"
  789.       state_topic: "wpu5g/ithostatus"
  790.       value_template: "{{ value_json['CV mode blocked'] }}"
  791.       device:
  792.         identifiers: "wpu5g"
  793.  
  794.     - unique_id: "18c63cc3-24fd-436c-92df-cc24290bdd38"
  795.       name: "Boiler mode blocked"
  796.       icon: "mdi:alert"
  797.       state_topic: "wpu5g/ithostatus"
  798.       value_template: "{{ value_json['Boiler mode blocked'] }}"
  799.       device:
  800.         identifiers: "wpu5g"
  801.  
  802.     - unique_id: "e6b79615-c596-4aaf-b297-5e1e9464c2a2"
  803.       name: "Free cooling mode blocked"
  804.       icon: "mdi:alert"
  805.       state_topic: "wpu5g/ithostatus"
  806.       value_template: "{{ value_json['Free cooling mode blocked'] }}"
  807.       device:
  808.         identifiers: "wpu5g"
  809.  
  810.     - unique_id: "41ed4958-8701-4676-8be2-1feb1f35acbd"
  811.       name: "Bleeding mode blocked"
  812.       icon: "mdi:alert"
  813.       state_topic: "wpu5g/ithostatus"
  814.       value_template: "{{ value_json['Bleeding mode blocked'] }}"
  815.       device:
  816.         identifiers: "wpu5g"
  817.  
  818.     - unique_id: "3d8ccde7-79ae-4851-81fd-d36e8c8cbad2"
  819.       name: "Electrical element blocked"
  820.       icon: "mdi:alert"
  821.       state_topic: "wpu5g/ithostatus"
  822.       value_template: "{{ value_json['Electr element blocked'] }}"
  823.       device:
  824.         identifiers: "wpu5g"
  825.  
  826.     - unique_id: "4e0f34c8-cb75-4036-8718-8836ef1c7f99"
  827.       name: "Electrical element DHW blocked"
  828.       icon: "mdi:alert"
  829.       state_topic: "wpu5g/ithostatus"
  830.       value_template: "{{ value_json['Electr element DHW blocked'] }}"
  831.       device:
  832.         identifiers: "wpu5g"
  833.  
  834.     - unique_id: "b2a8e24a-4f2e-42aa-89b6-9ef0f13e2987"
  835.       name: "Off mode active"
  836.       icon: "mdi:power"
  837.       state_topic: "wpu5g/ithostatus"
  838.       value_template: "{{ value_json['Off mode active'] }}"
  839.       device:
  840.         identifiers: "wpu5g"
  841.  
  842.     - unique_id: "dd2353af-e511-4692-9cbf-c3a11d774c35"
  843.       name: "CV mode active"
  844.       icon: "mdi:check-circle"
  845.       state_topic: "wpu5g/ithostatus"
  846.       value_template: "{{ value_json['CV mode active'] }}"
  847.       device:
  848.         identifiers: "wpu5g"
  849.  
  850.     - unique_id: "7cd3f2ef-47e5-410f-94c4-f9f1c55b6ac2"
  851.       name: "Boiler mode active"
  852.       icon: "mdi:check-circle"
  853.       state_topic: "wpu5g/ithostatus"
  854.       value_template: "{{ value_json['Boiler mode active'] }}"
  855.       device:
  856.         identifiers: "wpu5g"
  857.  
  858.     - unique_id: "2e1cc7a0-a6ad-4a97-8956-a0114ac2ddf3"
  859.       name: "Free cooling mode active"
  860.       icon: "mdi:check-circle"
  861.       state_topic: "wpu5g/ithostatus"
  862.       value_template: "{{ value_json['Free cooling mode active'] }}"
  863.       device:
  864.         identifiers: "wpu5g"
  865.  
  866.     - unique_id: "c4b89393-60b8-4f85-9f6a-0d1345c4d80a"
  867.       name: "CV pump prime"
  868.       icon: "mdi:pump"
  869.       state_topic: "wpu5g/ithostatus"
  870.       value_template: "{{ value_json['CV pump prime'] }}"
  871.       device:
  872.         identifiers: "wpu5g"
  873.  
  874.     - unique_id: "fb6d6643-7abe-4b61-be43-2b00c8f18d41"
  875.       name: "Well pump prime"
  876.       icon: "mdi:pump"
  877.       state_topic: "wpu5g/ithostatus"
  878.       value_template: "{{ value_json['Well pump prime'] }}"
  879.       device:
  880.         identifiers: "wpu5g"
  881.  
  882.     - unique_id: "b2b45ee9-1fc6-409c-9d14-605fdba78de6"
  883.       name: "Element released"
  884.       state_topic: "wpu5g/ithostatus"
  885.       value_template: "{{ value_json['Element released'] }}"
  886.       device:
  887.         identifiers: "wpu5g"
  888.  
  889.     - unique_id: "9e0956c7-2c3d-4805-804d-bcb75dd04219"
  890.       name: "Additional cooling release"
  891.       icon: "mdi:snowflake"
  892.       state_topic: "wpu5g/ithostatus"
  893.       value_template: "{{ value_json['Additional cooling release'] }}"
  894.       device:
  895.         identifiers: "wpu5g"
  896.  
  897.     - unique_id: "080b7ad6-d11b-4742-935e-1ba51b58785e"
  898.       name: "CV enabled"
  899.       icon: "mdi:checkbox-marked-circle"
  900.       state_topic: "wpu5g/ithostatus"
  901.       value_template: "{{ value_json['CV enabled'] }}"
  902.       device:
  903.         identifiers: "wpu5g"
  904.  
  905.     - unique_id: "1806f49e-db5b-4586-85a6-507c52dec6b7"
  906.       name: "Free cooling enabled"
  907.       icon: "mdi:snowflake-check"
  908.       state_topic: "wpu5g/ithostatus"
  909.       value_template: "{{ value_json['Free cooling enabled'] }}"
  910.       device:
  911.         identifiers: "wpu5g"
  912.  
  913.     - unique_id: "49ee999a-ff0c-484b-8b52-4be3e0df5b3e"
  914.       name: "Heat demand total"
  915.       icon: "mdi:thermometer-lines"
  916.       unit_of_measurement: "%"
  917.       state_topic: "wpu5g/ithostatus"
  918.       value_template: "{{ value_json['Heat demand total (%)'] }}"
  919.       device:
  920.         identifiers: "wpu5g"
  921.  
  922.     - unique_id: "13401d0f-3c70-4ccc-8f32-3fbce3abee9e"
  923.       name: "E-consumption during stand-by"
  924.       icon: "mdi:flash"
  925.       unit_of_measurement: "kWh"
  926.       state_topic: "wpu5g/ithostatus"
  927.       value_template: "{{ value_json['E-consumption during stand-by (kWh)'] }}"
  928.       device:
  929.         identifiers: "wpu5g"
  930.  
  931.     - unique_id: "7fe02978-c2b8-4b76-8184-f962f5a54855"
  932.       name: "E-consumption during heating"
  933.       icon: "mdi:flash"
  934.       unit_of_measurement: "kWh"
  935.       state_topic: "wpu5g/ithostatus"
  936.       value_template: "{{ value_json['E-consumption during heating (kWh)'] }}"
  937.       device:
  938.         identifiers: "wpu5g"
  939.  
  940.     - unique_id: "b8068d32-0a10-4e6a-951a-81b92fcdedc6"
  941.       name: "E-consumption during DHW"
  942.       icon: "mdi:flash"
  943.       unit_of_measurement: "kWh"
  944.       state_topic: "wpu5g/ithostatus"
  945.       value_template: "{{ value_json['E-consumption during DHW (kWh)'] }}"
  946.       device:
  947.         identifiers: "wpu5g"
  948.  
  949.     - unique_id: "aa0ea019-b40a-4de4-b736-7f21a8708181"
  950.       name: "E-consumption during cooling"
  951.       icon: "mdi:flash"
  952.       unit_of_measurement: "kWh"
  953.       state_topic: "wpu5g/ithostatus"
  954.       value_template: "{{ value_json['E-consumption during cooling (kWh)'] }}"
  955.       device:
  956.         identifiers: "wpu5g"
  957.  
  958.     - unique_id: "3db09117-2915-4f11-b99e-9121aa6deaeb"
  959.       name: "Preheat tap water"
  960.       icon: "mdi:water-boiler"
  961.       state_topic: "wpu5g/ithostatus"
  962.       value_template: "{{ value_json['Preheat tap water'] }}"
  963.       device:
  964.         identifiers: "wpu5g"
  965.  
  966.     - unique_id: "a6b34a80-a4ad-4fd6-b0eb-111c133ef25b"
  967.       name: "Element blocked during retry"
  968.       icon: "mdi:alert"
  969.       state_topic: "wpu5g/ithostatus"
  970.       value_template: "{{ value_json['Element blocked during retry'] }}"
  971.       device:
  972.         identifiers: "wpu5g"
  973.  
  974.     - unique_id: "6006f878-c8cd-4563-b109-f7692bbf0b95"
  975.       name: "Pi error well flow"
  976.       icon: "mdi:alert"
  977.       unit_of_measurement: "errors"
  978.       state_topic: "wpu5g/ithostatus"
  979.       value_template: "{{ value_json['Pi error sourceflow'] }}"
  980.       device:
  981.         identifiers: "wpu5g"
  982.  
  983.     - unique_id: "b96c9d33-ed64-43f6-9161-d59d1dae5bbd"
  984.       name: "Current well valve position"
  985.       icon: "mdi:valve"
  986.       unit_of_measurement: "%"
  987.       state_topic: "wpu5g/ithostatus"
  988.       value_template: "{{ value_json['Current source valve position (%)'] }}"
  989.       device:
  990.         identifiers: "wpu5g"
  991.  
  992.     - unique_id: "130f4b72-6e6c-48ea-9c23-1f0e3aaea28c"
  993.       name: "Free cooling block"
  994.       icon: "mdi:timer"
  995.       unit_of_measurement: "min"
  996.       state_topic: "wpu5g/ithostatus"
  997.       value_template: "{{ value_json['Free cooling block time (min)'] }}"
  998.       device:
  999.         identifiers: "wpu5g"
  1000.  
  1001.     - unique_id: "15536222-243a-44e8-bc8a-e80cea265819"
  1002.       name: "Cooling temp control valve setpoint"
  1003.       icon: "mdi:valve"
  1004.       unit_of_measurement: "%"
  1005.       state_topic: "wpu5g/ithostatus"
  1006.       value_template: "{{ value_json['Cooling temp control valve setpoint (%)'] }}"
  1007.       device:
  1008.         identifiers: "wpu5g"
  1009.  
  1010.     - unique_id: "de93ed94-7775-4809-9251-e2ee54763d91"
  1011.       name: "CO valve position"
  1012.       icon: "mdi:valve"
  1013.       unit_of_measurement: "%"
  1014.       state_topic: "wpu5g/ithostatus"
  1015.       value_template: "{{ value_json['CO valve position (%)'] }}"
  1016.       device:
  1017.         identifiers: "wpu5g"
  1018.  
  1019.     - unique_id: "30d55901-d666-47f5-81d7-825aa37b3e70"
  1020.       name: "HRU blowout"
  1021.       icon: "mdi:thermometer"
  1022.       unit_of_measurement: "°C"
  1023.       device_class: "temperature"
  1024.       state_topic: "wpu5g/ithostatus"
  1025.       value_template: "{{ value_json['HRU blowout temp (°C)'] }}"
  1026.       device:
  1027.         identifiers: "wpu5g"
  1028.  
  1029.     - unique_id: "b5725cc6-d200-4f0e-8e97-43e2902df5cd"
  1030.       name: "HRU blowout flow"
  1031.       icon: "mdi:air-filter"
  1032.       unit_of_measurement: "m3/h"
  1033.       state_topic: "wpu5g/ithostatus"
  1034.       value_template: "{{ value_json['HRU blowout flow (m3_h)'] }}"
  1035.       device:
  1036.         identifiers: "wpu5g"
  1037.  
  1038.     - unique_id: "827bc940-ff49-4651-9f22-237089873bf7"
  1039.       name: "Regeneration active"
  1040.       icon: "mdi:recycle"
  1041.       state_topic: "wpu5g/ithostatus"
  1042.       value_template: "{{ value_json['Regeneration active'] }}"
  1043.       device:
  1044.         identifiers: "wpu5g"
  1045.  
  1046.     - unique_id: "f49168ec-e452-4256-80be-a330935162b5"
  1047.       name: "Latest valid souwellrce supply"
  1048.       icon: "mdi:thermometer"
  1049.       unit_of_measurement: "°C"
  1050.       device_class: "temperature"
  1051.       state_topic: "wpu5g/ithostatus"
  1052.       value_template: "{{ value_json['Latest valid source supply temp. (°C)'] }}"
  1053.       device:
  1054.         identifiers: "wpu5g"
  1055.  
  1056.     - unique_id: "0cb501fa-87ad-4f46-89d0-a29c14428008"
  1057.       name: "Well pump flow setpoint"
  1058.       icon: "mdi:pump"
  1059.       unit_of_measurement: "l/h"
  1060.       state_topic: "wpu5g/ithostatus"
  1061.       value_template: "{{ value_json['Source pump flow setpoint (l_h)'] }}"
  1062.       device:
  1063.         identifiers: "wpu5g"
  1064.  
  1065.     - unique_id: "804de720-4808-411d-bf40-b376d1da175b"
  1066.       name: "Well pump speed at compr"
  1067.       unit_of_measurement: "%"
  1068.       state_topic: "wpu5g/ithostatus"
  1069.       value_template: "{{ value_json['Well pump speed at compr (%)'] }}"
  1070.       device:
  1071.         identifiers: "wpu5g"
  1072.  
  1073.     - unique_id: "d9065919-b7ba-4f12-82f1-aaf2b3d0a875"
  1074.       name: "Well pump speed at free cooling"
  1075.       unit_of_measurement: "%"
  1076.       state_topic: "wpu5g/ithostatus"
  1077.       value_template: "{{ value_json['Source pump speed at free cooling (%)'] }}"
  1078.       device:
  1079.         identifiers: "wpu5g"
  1080.  
  1081.     - unique_id: "fcfd8449-4e10-40e3-9bcf-8b681605cf79"
  1082.       name: "Well pump speed at airreg"
  1083.       unit_of_measurement: "%"
  1084.       state_topic: "wpu5g/ithostatus"
  1085.       value_template: "{{ value_json['Well pump speed at airreg (%)'] }}"
  1086.       device:
  1087.         identifiers: "wpu5g"
  1088.  
  1089.     - unique_id: "fded415c-3578-4ac8-a214-41c031782d34"
  1090.       name: "Free cooling mode"
  1091.       icon: "mdi:snowflake"
  1092.       state_topic: "wpu5g/ithostatus"
  1093.       value_template: "{{ value_json['Free cooling mode'] }}"
  1094.       device:
  1095.         identifiers: "wpu5g"
  1096.  
  1097.     - unique_id: "0561aa89-3768-48e9-9597-a89d404aca17"
  1098.       name: "Time CO valve start position"
  1099.       icon: "mdi:timer"
  1100.       unit_of_measurement: "sec"
  1101.       state_topic: "wpu5g/ithostatus"
  1102.       value_template: "{{ value_json['Time CO valve start position (sec)'] }}"
  1103.       device:
  1104.         identifiers: "wpu5g"
  1105.  
  1106.     - unique_id: "e7f195d6-f2b7-4117-bac9-fd5380afff1c"
  1107.       name: "Minimum release time external cooling"
  1108.       icon: "mdi:timer"
  1109.       unit_of_measurement: "sec"
  1110.       state_topic: "wpu5g/ithostatus"
  1111.       value_template: "{{ value_json['Minimum release time external cooling (sec)'] }}"
  1112.       device:
  1113.         identifiers: "wpu5g"
  1114.  
  1115.     - unique_id: "e5e93232-76ba-40f2-9c62-9759ace73556"
  1116.       name: "Block time-release external cooling"
  1117.       icon: "mdi:timer"
  1118.       unit_of_measurement: "sec"
  1119.       state_topic: "wpu5g/ithostatus"
  1120.       value_template: "{{ value_json['Block time-release external cooling (sec)'] }}"
  1121.       device:
  1122.         identifiers: "wpu5g"
  1123.  
  1124.     - unique_id: "10932604-a321-499f-9428-91bcbf93c331"
  1125.       name: "External heating release"
  1126.       icon: "mdi:timer"
  1127.       unit_of_measurement: "sec"
  1128.       state_topic: "wpu5g/ithostatus"
  1129.       value_template: "{{ value_json['External heating release time (sec)'] }}"
  1130.       device:
  1131.         identifiers: "wpu5g"
  1132.  
  1133.     - unique_id: "4ea2cb6e-2350-4693-9019-003a72441e3c"
  1134.       name: "Blocking time trickle low after power-up"
  1135.       icon: "mdi:timer"
  1136.       unit_of_measurement: "sec"
  1137.       state_topic: "wpu5g/ithostatus"
  1138.       value_template: "{{ value_json['Blocking time trickle low after power-up (sec.)'] }}"
  1139.       device:
  1140.         identifiers: "wpu5g"
  1141.  
  1142.     - unique_id: "0b1b3dfb-636f-4bba-bf03-fb82c229bbcc"
  1143.       name: "Blocking time trickle low after CV operation"
  1144.       icon: "mdi:timer"
  1145.       unit_of_measurement: "sec"
  1146.       state_topic: "wpu5g/ithostatus"
  1147.       value_template: "{{ value_json['Blocking time trickle low after CV operation (sec)'] }}"
  1148.       device:
  1149.         identifiers: "wpu5g"
  1150.  
  1151.     - unique_id: "6e206c2c-7196-42d4-aa20-e44a3164ade8"
  1152.       name: "Block time pre-heating tap water"
  1153.       icon: "mdi:timer"
  1154.       unit_of_measurement: "sec"
  1155.       state_topic: "wpu5g/ithostatus"
  1156.       value_template: "{{ value_json['Block time pre-heating tap water (sec)'] }}"
  1157.       device:
  1158.         identifiers: "wpu5g"
  1159.  
  1160.     - unique_id: "a153caeb-233a-42ac-a85b-aeef5a55188d"
  1161.       name: "Slow start well pump"
  1162.       icon: "mdi:timer"
  1163.       unit_of_measurement: "sec"
  1164.       state_topic: "wpu5g/ithostatus"
  1165.       value_template: "{{ value_json['Slow start well pump (sec)'] }}"
  1166.       device:
  1167.         identifiers: "wpu5g"
  1168.  
  1169.     - unique_id: "76589462-4c46-4976-8083-b91cb31ee418"
  1170.       name: "Well return temperature too low"
  1171.       icon: "mdi:thermometer-alert"
  1172.       unit_of_measurement: "sec"
  1173.       state_topic: "wpu5g/ithostatus"
  1174.       value_template: "{{ value_json['Source return temperature too low (sec.)'] }}"
  1175.       device:
  1176.         identifiers: "wpu5g"
  1177.  
  1178.     - unique_id: "21d0d439-8faf-48b3-b683-d74292a2399e"
  1179.       name: "Well flow control period"
  1180.       icon: "mdi:timer"
  1181.       unit_of_measurement: "sec"
  1182.       state_topic: "wpu5g/ithostatus"
  1183.       value_template: "{{ value_json['Source flow control period (sec)'] }}"
  1184.       device:
  1185.         identifiers: "wpu5g"
  1186.  
  1187.     - unique_id: "1857dfa3-b5d7-4ea4-973d-12b9b01cbcdf"
  1188.       name: "Stabilisation waiting time-free cooling"
  1189.       icon: "mdi:timer"
  1190.       unit_of_measurement: "sec"
  1191.       state_topic: "wpu5g/ithostatus"
  1192.       value_template: "{{ value_json['Stabilisation waiting time-free cooling (sec.)'] }}"
  1193.       device:
  1194.         identifiers: "wpu5g"
  1195.  
  1196.     - unique_id: "1ac4b21f-2707-452d-80c1-3445b49cfbff"
  1197.       name: "Minimum time for preheating potable water"
  1198.       icon: "mdi:timer"
  1199.       unit_of_measurement: "sec"
  1200.       state_topic: "wpu5g/ithostatus"
  1201.       value_template: "{{ value_json['Minimum time for preheating potable water (sec)'] }}"
  1202.       device:
  1203.         identifiers: "wpu5g"
  1204.  
  1205.     - unique_id: "a645a739-91f1-4f47-80d4-175c587246f0"
  1206.       name: "Maximum time for preheating potable water"
  1207.       icon: "mdi:timer"
  1208.       unit_of_measurement: "sec"
  1209.       state_topic: "wpu5g/ithostatus"
  1210.       value_template: "{{ value_json['Maximum time for preheating potable water (sec)'] }}"
  1211.       device:
  1212.         identifiers: "wpu5g"
  1213.  
  1214.     - unique_id: "40064e52-00b1-4585-be80-bcff03e2629f"
  1215.       name: "Electrical element release"
  1216.       icon: "mdi:timer"
  1217.       unit_of_measurement: "min"
  1218.       state_topic: "wpu5g/ithostatus"
  1219.       value_template: "{{ value_json['Electrical element release (min)'] }}"
  1220.       device:
  1221.         identifiers: "wpu5g"
  1222.  
  1223.     - unique_id: "eea7c788-ca31-4ef1-896a-91d9a6266cf4"
  1224.       name: "CH pump runtime"
  1225.       icon: "mdi:pump"
  1226.       unit_of_measurement: "h"
  1227.       state_topic: "wpu5g/ithostatus"
  1228.       value_template: "{{ value_json['CH pump on (h)'] }}"
  1229.       device:
  1230.         identifiers: "wpu5g"
  1231.  
  1232.     - unique_id: "e9e9ca50-51d9-450e-8323-94ac285ce964"
  1233.       name: "Well pump runtime"
  1234.       icon: "mdi:pump"
  1235.       unit_of_measurement: "h"
  1236.       state_topic: "wpu5g/ithostatus"
  1237.       value_template: "{{ value_json['Source pump on (h)'] }}"
  1238.       device:
  1239.         identifiers: "wpu5g"
  1240.  
  1241.     - unique_id: "72f7c7aa-a3ab-481e-bfac-b5a61aebe643"
  1242.       name: "DHW pump runtime"
  1243.       icon: "mdi:pump"
  1244.       unit_of_measurement: "h"
  1245.       state_topic: "wpu5g/ithostatus"
  1246.       value_template: "{{ value_json['DHW pump on (h)'] }}"
  1247.       device:
  1248.         identifiers: "wpu5g"
  1249.  
  1250.     - unique_id: "b529e585-d1eb-4f2b-90f7-3fae0ea035b1"
  1251.       name: "Compressor runtime"
  1252.       unit_of_measurement: "h"
  1253.       state_topic: "wpu5g/ithostatus"
  1254.       value_template: "{{ value_json['Compressor on (h)'] }}"
  1255.       device:
  1256.         identifiers: "wpu5g"
  1257.  
  1258.     - unique_id: "d888bcad-4be5-40c9-9de2-b004a068916d"
  1259.       name: "Electrical element runtime"
  1260.       unit_of_measurement: "h"
  1261.       state_topic: "wpu5g/ithostatus"
  1262.       value_template: "{{ value_json['Electrical element on (h)'] }}"
  1263.       device:
  1264.         identifiers: "wpu5g"
  1265.  
  1266.     - unique_id: "a8c9cb74-f2aa-4127-871e-8b2b79aca173"
  1267.       name: "CH mode"
  1268.       icon: "mdi:radiator"
  1269.       unit_of_measurement: "h"
  1270.       state_topic: "wpu5g/ithostatus"
  1271.       value_template: "{{ value_json['CH mode (h)'] }}"
  1272.       device:
  1273.         identifiers: "wpu5g"
  1274.  
  1275.     - unique_id: "3358654e-9eb1-40cc-a0f5-dda85de9cfc2"
  1276.       name: "DHW mode"
  1277.       icon: "mdi:water-boiler"
  1278.       unit_of_measurement: "h"
  1279.       state_topic: "wpu5g/ithostatus"
  1280.       value_template: "{{ value_json['DHW mode (h)'] }}"
  1281.       device:
  1282.         identifiers: "wpu5g"
  1283.  
  1284.     - unique_id: "b709644c-69d1-41db-bad7-fc9c469d1c27"
  1285.       name: "Free cooling mode"
  1286.       icon: "mdi:snowflake"
  1287.       unit_of_measurement: "h"
  1288.       state_topic: "wpu5g/ithostatus"
  1289.       value_template: "{{ value_json['Free cooling mode (h)'] }}"
  1290.       device:
  1291.         identifiers: "wpu5g"
  1292.  
  1293.     - unique_id: "b081010a-6531-4478-a136-df265548c3a9"
  1294.       name: "Total runtime"
  1295.       icon: "mdi:timer"
  1296.       unit_of_measurement: "h"
  1297.       state_topic: "wpu5g/ithostatus"
  1298.       value_template: "{{ value_json['Total runtime (h)'] }}"
  1299.       device:
  1300.         identifiers: "wpu5g"
  1301.  
  1302.     - unique_id: "a74adfcf-7ac2-4d94-98f3-deeb39bff7f5"
  1303.       name: "CH pump starts"
  1304.       icon: "mdi:counter"
  1305.       state_topic: "wpu5g/ithostatus"
  1306.       value_template: "{{ value_json['CH pump starts'] }}"
  1307.       device:
  1308.         identifiers: "wpu5g"
  1309.  
  1310.     - unique_id: "72afcd6c-feed-4708-b1cf-c1a879bb6f06"
  1311.       name: "Well pump starts"
  1312.       icon: "mdi:counter"
  1313.       state_topic: "wpu5g/ithostatus"
  1314.       value_template: "{{ value_json['Source pump starts'] }}"
  1315.       device:
  1316.         identifiers: "wpu5g"
  1317.  
  1318.     - unique_id: "9989b83b-923f-40b1-b061-02e0fc8469d3"
  1319.       name: "DHW pump starts"
  1320.       icon: "mdi:counter"
  1321.       state_topic: "wpu5g/ithostatus"
  1322.       value_template: "{{ value_json['DHW pump starts'] }}"
  1323.       device:
  1324.         identifiers: "wpu5g"
  1325.  
  1326.     - unique_id: "3dd5e637-70f9-41ed-9541-cc53b50c340f"
  1327.       name: "Compressor starts"
  1328.       icon: "mdi:counter"
  1329.       state_topic: "wpu5g/ithostatus"
  1330.       value_template: "{{ value_json['Compressor starts'] }}"
  1331.       device:
  1332.         identifiers: "wpu5g"
  1333.  
  1334.     - unique_id: "ac2df89c-a52a-4157-aed4-24a66f11076a"
  1335.       name: "Electrical element starts"
  1336.       icon: "mdi:counter"
  1337.       state_topic: "wpu5g/ithostatus"
  1338.       value_template: "{{ value_json['Electrical element starts'] }}"
  1339.       device:
  1340.         identifiers: "wpu5g"
  1341.  
  1342.     - unique_id: "e087c334-7e7c-4636-af1c-a956f71603ad"
  1343.       name: "CH mode starts"
  1344.       icon: "mdi:counter"
  1345.       state_topic: "wpu5g/ithostatus"
  1346.       value_template: "{{ value_json['CH mode starts'] }}"
  1347.       device:
  1348.         identifiers: "wpu5g"
  1349.  
  1350.     - unique_id: "52fc46ac-5c76-4456-be35-3b62c77168e7"
  1351.       name: "DHW mode starts"
  1352.       icon: "mdi:counter"
  1353.       state_topic: "wpu5g/ithostatus"
  1354.       value_template: "{{ value_json['DHW mode starts'] }}"
  1355.       device:
  1356.         identifiers: "wpu5g"
  1357.  
  1358.     - unique_id: "1727ef67-cc9e-4cba-a2d1-25c8905af6ec"
  1359.       name: "Free cooling starts"
  1360.       icon: "mdi:counter"
  1361.       state_topic: "wpu5g/ithostatus"
  1362.       value_template: "{{ value_json['Free cooling starts'] }}"
  1363.       device:
  1364.         identifiers: "wpu5g"
  1365.  
  1366.     - unique_id: "9cefcf7a-f4e2-4585-99a3-9b66901cec9a"
  1367.       name: "System starts"
  1368.       icon: "mdi:counter"
  1369.       state_topic: "wpu5g/ithostatus"
  1370.       value_template: "{{ value_json['System starts'] }}"
  1371.       device:
  1372.         identifiers: "wpu5g"
  1373.  
  1374.     - unique_id: "75fef086-5520-409f-a28b-8041dbe60de1"
  1375.       name: "DHW element runtime"
  1376.       icon: "mdi:water-boiler"
  1377.       unit_of_measurement: "h"
  1378.       state_topic: "wpu5g/ithostatus"
  1379.       value_template: "{{ value_json['DHW element on (h)'] }}"
  1380.       device:
  1381.         identifiers: "wpu5g"
  1382.  
  1383.     - unique_id: "a389e2cf-5dcf-4551-a2bf-09d7367fc2b9"
  1384.       name: "DHW element starts"
  1385.       icon: "mdi:water-boiler"
  1386.       state_topic: "wpu5g/ithostatus"
  1387.       value_template: "{{ value_json['DHW element starts'] }}"
  1388.       device:
  1389.         identifiers: "wpu5g"
  1390.  
  1391.     - unique_id: "43035db1-92d8-41e3-bf55-a6d470b1411a"
  1392.       name: "E-consumption stand-by"
  1393.       icon: "mdi:flash"
  1394.       unit_of_measurement: "kWh"
  1395.       state_topic: "wpu5g/ithostatus"
  1396.       value_template: "{{ value_json['E-consumption stand-by (kWh)'] }}"
  1397.       device:
  1398.         identifiers: "wpu5g"
  1399.  
  1400.     - unique_id: "f04552e5-59f1-45ee-bc67-a31d1fdebe89"
  1401.       name: "E-consumption heating"
  1402.       icon: "mdi:flash"
  1403.       unit_of_measurement: "kWh"
  1404.       state_topic: "wpu5g/ithostatus"
  1405.       value_template: "{{ value_json['E-consumption heating (kWh)'] }}"
  1406.       device:
  1407.         identifiers: "wpu5g"
  1408.  
  1409.     - unique_id: "0415ed33-8121-4692-9878-68f8c85161bb"
  1410.       name: "E-consumption DHW"
  1411.       icon: "mdi:flash"
  1412.       unit_of_measurement: "kWh"
  1413.       state_topic: "wpu5g/ithostatus"
  1414.       value_template: "{{ value_json['E-consumption DHW (kWh)'] }}"
  1415.       device:
  1416.         identifiers: "wpu5g"
  1417.  
  1418.     - unique_id: "655824ad-afcc-43ab-82c2-f44f645f2fd5"
  1419.       name: "E-consumption cooling"
  1420.       icon: "mdi:flash"
  1421.       unit_of_measurement: "kWh"
  1422.       state_topic: "wpu5g/ithostatus"
  1423.       value_template: "{{ value_json['E-consumption cooling (kWh)'] }}"
  1424.       device:
  1425.         identifiers: "wpu5g"
  1426.  
  1427.     - unique_id: "e66983df-2c9b-4ef3-8504-de91015c4957"
  1428.       name: "Energy out of well"
  1429.       icon: "mdi:flash"
  1430.       unit_of_measurement: "MWh"
  1431.       state_topic: "wpu5g/ithostatus"
  1432.       value_template: "{{ value_json['Energy out of source (MWh)'] }}"
  1433.       device:
  1434.         identifiers: "wpu5g"
  1435.  
  1436.     - unique_id: "8113b2c9-87d4-4491-910d-75857af31d57"
  1437.       name: "Energy returned to well"
  1438.       icon: "mdi:flash"
  1439.       unit_of_measurement: "MWh"
  1440.       state_topic: "wpu5g/ithostatus"
  1441.       value_template: "{{ value_json['Energy returned to source (MWh)'] }}"
  1442.       device:
  1443.         identifiers: "wpu5g"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement