Hello guys,
I think I need a little bit of input. I searched a lot on google but I didn’t find anything close that could save my problem.
I think it will be easy for you, thanks for the help.
I want to trigger an automation which send me a telegram notification when the temperature outside is lower then inside.
alias: OpenWeather Temp Outside Telegram (wSensor)
description: ''
trigger:
- platform: numeric_state
entity_id: sensor.openweathermap_temperature
below: -1
value_template: "{{ state.sensor.openweathermap_temperature - state.sensor.lumi_lumi_weather_temperature }}"
condition: []
action:
- service: notify.marceltelegram
data:
message: Temp Out 1°C lower
title: '*~~Weather~~*'
mode: single
Is this the way to go?