How to make an Average Sensor from other Sensor Attributes?

Try this:

{{ ['climate.downstairs_heating_local', 'climate.upstairs_heating_local', 'climate.kitchen_ufh_local'] | map('state_attr', 'current_temperature') | select('is_number') | average | round(2) }}
1 Like