Last active
November 28, 2021 12:04
-
-
Save bartclone/fd5d7ad3b5f48485c41b331d5fc978c7 to your computer and use it in GitHub Desktop.
Automation als Max temperatuur wordt bereikt (OpenWeather)
This file contains 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
alias: Notify op warmste moment van dag | |
description: Melding sturen op warmste moment van de dag | |
trigger: | |
- platform: state | |
id: max-temp-of-the-day-reached | |
to: 'on' | |
#from: 'off' | |
entity_id: binary_sensor.time_max_temperature_reached | |
action: | |
- service: notify.notify | |
data: | |
message: Dit is het warmste moment van de dag | |
title: Warm hoor. | |
mode: single |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment