From b9db76587db0f271a3a3eb31b2337dea8ff06b9e Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sun, 27 Sep 2015 20:10:25 -0700 Subject: [PATCH] Fix IFTTT blog post automation example --- .../_posts/2015-09-13-home-assistant-meets-ifttt.markdown | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/_posts/2015-09-13-home-assistant-meets-ifttt.markdown b/source/_posts/2015-09-13-home-assistant-meets-ifttt.markdown index 9f24d927734..c74e542c27e 100644 --- a/source/_posts/2015-09-13-home-assistant-meets-ifttt.markdown +++ b/source/_posts/2015-09-13-home-assistant-meets-ifttt.markdown @@ -63,11 +63,11 @@ Setup Maker channel with event name `HA_FIRE_ALARM` and Twitter channel to tweet automation: - alias: Post a tweet when fire alarm is triggered trigger: - - platform: mqtt - mqtt_topic: home/alarm/fire - mqtt_payload: 'on' + platform: mqtt + mqtt_topic: home/alarm/fire + mqtt_payload: 'on' - action: + action: service: ifttt.trigger data: {"event":"HA_FIRE_ALARM", "value1":"The fire alarm just triggered!"} ```