I tried min/Max, but from the documentation it requires at least TWO sensors.
I am working with just one.
entity_ids list | string REQUIRED
At least two entities to monitor. The unit of measurement of the first entry will be the one that’s used. All entities must use the same unit of measurement.
Here is what I have right now.
My thought was I would use statistics as a way to get the MAX temp each day (thus the max_age as 1)
I would then use the average sensor to get hte average of the statistics sensor.
sensor:
- platform: average
name: 'Average Max Pool Temp'
duration:
days: 14
entities:
- sensor.max_pool_temps
- platform: statistics
name: "Max Pool Temps"
entity_id: sensor.pool_temp
state_characteristic: value_max
max_age:
days: 1
Here is what the history looks like so this is not working either