mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-02 01:07:36 +00:00

* Sets front matter defaults * Removes default front matter from section templates/pages * Removes default front matter from addon pages * Removes default front matter from integration pages * Removes default front matter from posts * Removes default front matter from docs pages * Removes default front matter from other pages * Fixes blog category pages
29 lines
997 B
Markdown
29 lines
997 B
Markdown
---
|
|
title: "MQTT"
|
|
description: "Details about the MQTT support of Home Assistant."
|
|
---
|
|
|
|
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:
|
|
|
|
```yaml
|
|
# Example configuration.yaml entry
|
|
mqtt:
|
|
broker: IP_ADDRESS
|
|
```
|
|
|
|
For detailed setup instructions, please refer to the [MQTT broker](/docs/mqtt/broker) documentation.
|
|
|
|
## Additional features
|
|
|
|
- [Certificate](/docs/mqtt/certificate/)
|
|
- [Discovery](/docs/mqtt/discovery/)
|
|
- [Publish service](/docs/mqtt/service/)
|
|
- [Birth and last will messages](/docs/mqtt/birth_will/)
|
|
- [Testing your setup](/docs/mqtt/testing/)
|
|
- [Logging](/docs/mqtt/logging/)
|
|
- [Processing JSON](/docs/mqtt/processing_json/)
|
|
|
|
See the [MQTT example component](/cookbook/python_component_mqtt_basic/) how to integrate your own component.
|