Skip to content

Latest commit

 

History

History
38 lines (32 loc) · 909 Bytes

readme.md

File metadata and controls

38 lines (32 loc) · 909 Bytes

Daily Min Max

Track the min or max value of a sensor over the course of a day. The sensor will reset its value every 24h, by default at midnight.

Installation

Place the folder for the custom component daily_min_max in your config/custom_components/ directory and restart home assistant.

Example Configuration

- sensor:

  - platform: daily_min_max
    name: Pan Daily Max
    type: max
    entity_ids:
      - sensor.pan_temperature

  - platform: daily_min_max
    name: Outdoor Daily Max
    type: max
    entity_ids:
      - sensor.outdoor_temp
      - sensor.indoor_temp
    time: "03:30:00"

  - platform: daily_min_max
    name: Manually reset Only
    type: min
    entity_ids:
      - sensor.fuel_consumption
    manual_reset_only: True

To reset a sensor manually invoke the service e.g.

service: daily_min_max.reset
target:
  entity_id: sensor.outdoor_daily_max