From 48f601637e740f71a1fa4af79cde53a707b705c2 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Wed, 13 Jan 2016 09:21:28 +0100 Subject: [PATCH] Add inital mwtt_eventstream page --- source/_components/mqtt_eventstream.markdown | 29 ++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 source/_components/mqtt_eventstream.markdown diff --git a/source/_components/mqtt_eventstream.markdown b/source/_components/mqtt_eventstream.markdown new file mode 100644 index 00000000000..59a49a64505 --- /dev/null +++ b/source/_components/mqtt_eventstream.markdown @@ -0,0 +1,29 @@ +--- +layout: component +title: "MQTT Eventstream" +description: "Instructions how to setup MQTT within Home Assistant." +date: 2016-01-13 08:00 +sidebar: true +comments: false +sharing: true +footer: true +logo: mqtt.png +ha_category: Others +--- + +The `mqtt_eventstream` components two Home Assistant instances via MQTT. + +To integrate MQTT Eventstream into Home Assistant, add the following section to your `configuration.yaml` file: + +```yaml +# Example configuration.yaml entry +mqtt_eventstream: + publish_topic: MyServerName + subscribe_topic: OtherHaServerName +``` + +Configuration variables: + +- **publish_topic** (*Required*): Topic for pushlishing local events +- **subscribe_topic** (*Required*): Topic to recieve events from the remote server. +