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 %}