Update mqtt configuration example to use external broker (#9316)

* Update mqtt.markdown

* Update source/_docs/mqtt.markdown

Co-Authored-By: emontnemery <erik@montnemery.com>
This commit is contained in:
Erik Montnemery 2019-05-10 22:44:47 +02:00 committed by Fabian Affolter
parent 07cf9a6474
commit bf12a9c3bf

View File

@ -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. 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 ```yaml
# Example configuration.yaml entry # Example configuration.yaml entry
mqtt: 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 %} ## {% linkable_title Additional features %}