Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Get water tank temperature values as seperate entities #113

Open
matthiasfliegner opened this issue Jun 17, 2024 · 1 comment
Open

Get water tank temperature values as seperate entities #113

matthiasfliegner opened this issue Jun 17, 2024 · 1 comment

Comments

@matthiasfliegner
Copy link

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.

@DorjeDorf
Copy link

DorjeDorf commented Jun 26, 2024

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') }}"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants