mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-02 09:17:35 +00:00
767 B
767 B
layout | title | description | date | sidebar | comments | sharing | footer | ha_category |
---|---|---|---|---|---|---|---|---|
page | Send a reminder | Send a reminder | 2015-12-16 08:00 | true | false | true | true | Automation Examples |
Always forget to eat lunch? Let Home Assistant send you a reminder.
Add a notify platform of your choice.
notify:
- platform: xmpp
name: jabber
sender: YOUR_JID
password: YOUR_JABBER_ACCOUNT_PASSWORD
recipient: YOUR_RECIPIENT
and automation part to your configuration.yaml
file.
automation:
- alias: Send message at a given time
trigger:
platform: time
hours: 12
minutes: 15
seconds: 0
action:
service: notify.jabber
data:
message: 'Time for lunch'