Skip to content

Instantly share code, notes, and snippets.

@Wuest3nFuchs
Last active December 25, 2025 20:03
Show Gist options
  • Select an option

  • Save Wuest3nFuchs/8ae672b2653b8274200d29d50e7dfd1a to your computer and use it in GitHub Desktop.

Select an option

Save Wuest3nFuchs/8ae672b2653b8274200d29d50e7dfd1a to your computer and use it in GitHub Desktop.
weather_notification_pro_2025
blueprint:
name: 🌦️ Weather Notification PRO 2025
description: >
Wetterbenachrichtigung mit PC-Support über HASS.Agent
domain: automation
input:
weather_entity:
name: Wetter-Entität
selector:
entity:
domain: weather
trigger_condition:
name: Wetterzustand
selector:
select:
options:
- rain
- snow
- thunderstorm
- windy
- cloudy
- sunny
notify_script:
name: 🔔 Benachrichtigungsskript
description: z. B. script.weather_notify_dispatcher
selector:
entity:
domain: script
title:
name: Titel
default: "🌦️ Wetterwarnung"
message:
name: Nachricht
default: >
Achtung: {{ states(weather_entity) }}
mode: single
trigger:
- platform: state
entity_id: !input weather_entity
condition:
- condition: template
value_template: >
{{ trigger.to_state.state == !input trigger_condition }}
action:
- service: script.turn_on
target:
entity_id: !input notify_script
data:
variables:
title: !input title
message: !input message
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment