From bf12a9c3bfc9fd4b9de8efc1dd93204b18b0abc7 Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Fri, 10 May 2019 22:44:47 +0200 Subject: [PATCH] Update mqtt configuration example to use external broker (#9316) * Update mqtt.markdown * Update source/_docs/mqtt.markdown Co-Authored-By: emontnemery --- source/_docs/mqtt.markdown | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/_docs/mqtt.markdown b/source/_docs/mqtt.markdown index 072561f9912..30a57287968 100644 --- a/source/_docs/mqtt.markdown +++ b/source/_docs/mqtt.markdown @@ -11,14 +11,15 @@ footer: true MQTT (aka MQ Telemetry Transport) is a machine-to-machine or "Internet of Things" connectivity protocol on top of TCP/IP. It allows extremely lightweight publish/subscribe messaging transport. -To integrate MQTT into Home Assistant, add the following section to your `configuration.yaml` file. Keep in mind that the minimal setup will run with [an embedded MQTT broker](/docs/mqtt/broker#embedded-broker): +To integrate MQTT into Home Assistant, add the following section to your `configuration.yaml` file: ```yaml # Example configuration.yaml entry mqtt: + broker: IP_ADDRESS ``` -For other setup methods, please refer to the [MQTT broker](/docs/mqtt/broker) documentation. +For detailed setup instructions, please refer to the [MQTT broker](/docs/mqtt/broker) documentation. ## {% linkable_title Additional features %}