From 4e053dbed4eb21cf9b1b3980e12e8a56b5c042da Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 16 Dec 2015 08:19:08 +0100 Subject: [PATCH] Add a reminder cookbook entry --- source/_cookbook/send_a_reminder.markdown | 42 +++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 source/_cookbook/send_a_reminder.markdown diff --git a/source/_cookbook/send_a_reminder.markdown b/source/_cookbook/send_a_reminder.markdown new file mode 100644 index 00000000000..bb0296f04aa --- /dev/null +++ b/source/_cookbook/send_a_reminder.markdown @@ -0,0 +1,42 @@ +--- +layout: page +title: "Send a reminder" +description: "Send a reminder" +date: 2015-12-16 08:00 +sidebar: false +comments: false +sharing: true +footer: true +--- + +#### {% linkable_title Send a reminder %} +Always forget to eat lunch? Let Home Assistant send you a reminder. + +Add a [notify platform](/components/notify/) of your choice + +```yaml +notify: + - platform: xmpp + name: jabber + sender: YOUR_JID + password: YOUR_JABBER_ACCOUNT_PASSWORD + recipient: YOUR_RECIPIENT +``` + +and automation part to your `configuration.yaml` file. + +```yaml +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' +``` + +