Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save organicaudio/791394aa2d1d28862aa2a51444ef623f to your computer and use it in GitHub Desktop.

Select an option

Save organicaudio/791394aa2d1d28862aa2a51444ef623f to your computer and use it in GitHub Desktop.
Home Assistant start Notify Telegram
blueprint:
name: HA start Notify Telegram
description: Notify telegram that Home Assistant has successfully started
domain: automation
source_url: https://gist.github.com/sawyyz/791394aa2d1d28862aa2a51444ef623f
input:
notification_title:
name: Notification title (Optional)
description: 'Default: "My Home Assistant"'
default: My Home Assistant
notification_message:
name: Notification message (Required)
description: 'Default: "Hassos has succesfully started!"'
default: Hassos has succesfully started!
trigger:
platform: homeassistant
event: start
variables:
notification_title: !input 'notification_title'
notification_message: !input 'notification_message'
action:
- service: telegram_bot.send_message
data:
message: !input 'notification_message'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment