This repository has been archived on 2023-06-10. You can view files and clone it, but cannot push or open issues or pull requests.
homeassistant-config/packages/homeassistant/notification_summary.yaml

15 lines
760 B
YAML
Raw Normal View History

2022-08-09 15:53:26 +00:00
script:
summary_notification:
sequence:
- service: notify.notify
data:
message: >
2022-08-11 19:07:23 +00:00
{% set maxTemp = states("sensor.temperature_today") %}
2022-08-09 15:53:26 +00:00
{% set condition = states("sensor.temperature_today_condition") %}
{% set currentTemp = states("sensor.temperature_outside") %}
{% set recommendation = states("sensor.climate_temp_recommendation") %}
2022-08-09 16:01:56 +00:00
{% set insideTemp = states("sensor.temperature_kai_temperature") %}
2022-08-09 15:53:26 +00:00
At the moment it is {{ condition }} outside with a temperature of {{ currentTemp }}°C.
2022-08-11 19:07:23 +00:00
Todays max temperature will be {{ maxTemp }}°C.
2022-08-09 16:01:56 +00:00
It is {{ insideTemp }} inside and recommended to {{ recommendation }}.
2022-08-09 15:53:26 +00:00
mode: single