You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for your great home assistant integration for the Panasonic heat pump!
Currently I only get an "tank" entity consisting of actual and target temperature.
I do need the actual water tank temperature as an individual entity in order to switch on/off an external heater using home assistant.
Would this be possible?
Thank you for your feedback.
The text was updated successfully, but these errors were encountered:
You can do that within HA itself by creating a template sensor.
It will depend how you have your config files set up and entity naming, but I believe this should be valid for default naming.
Something like this:
sensor:
- platform: template
sensors:
water_heater_temperature:
friendly_name: "Water Heater Temperature"
unit_of_measurement: "°C" # Use the appropriate unit
value_template: "{{ state_attr('water_heater.aquarea_tank', 'current_temperature') }}"
Thank you for your great home assistant integration for the Panasonic heat pump!
Currently I only get an "tank" entity consisting of actual and target temperature.
I do need the actual water tank temperature as an individual entity in order to switch on/off an external heater using home assistant.
Would this be possible?
Thank you for your feedback.
The text was updated successfully, but these errors were encountered: