Last active
December 23, 2022 06:41
-
-
Save rootiest/d1d98682489b0a577af9c32be3e84d28 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sensor: | |
- platform: statistics | |
name: Inside Temperature Statistics | |
entity_id: sensor.average_inside_temperature | |
sampling_size: 1440 | |
#max_age: 604800 | |
- platform: statistics | |
name: Inside Temperature Statistical Min | |
entity_id: sensor.average_inside_temperature | |
sampling_size: 1440 | |
state_characteristic: value_min | |
- platform: statistics | |
name: Inside Temperature Statistical Max | |
entity_id: sensor.average_inside_temperature | |
sampling_size: 1440 | |
state_characteristic: value_max | |
- platform: average | |
name: "Weekly Inside Temperature" | |
duration: | |
days: 7 | |
entities: | |
- sensor.average_inside_temperature | |
- platform: average | |
name: "Monthly Inside Temperature" | |
duration: | |
days: 30 | |
entities: | |
- sensor.average_inside_temperature |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment