home-assistant.io/source/_components/mqtt_statestream.markdown
2017-10-31 20:19:57 +01:00

2.2 KiB

layout, title, description, date, sidebar, comments, sharing, footer, logo, ha_category, ha_release, ha_iot_class
layout title description date sidebar comments sharing footer logo ha_category ha_release ha_iot_class
page MQTT Statestream Instructions how to setup MQTT Statestream within Home Assistant. 2017-10-01 20:00 true false true true mqtt.png Other 0.54 depends

The mqtt_statestream component publishes state changes in Home Assistant to individual MQTT topics.

To enable MQTT Statestream in Home Assistant, add the following section to your configuration.yaml file:

# Example configuration.yaml entry
mqtt_statestream:
  base_topic: homeassistant
  publish_attributes: true
  publish_timestamps: true

Configuration variables:

  • base_topic (Required): Base topic used to generate the actual topic used to publish.
  • publish_attributes (Optional): Publish attributes of the entity as well as the state. Default is false.
  • publish_timestamps (Optional): Publish the last_changed and last_updated timestamps for the entity. Default is false.

Operation

When any Home Assistant entity changes, this component will publish that change to MQTT.

The topic for each entity is different, so you can easily subscribe other systems to just the entities you are interested in. The topic will be in the form base_topic/domain/entity/state.

For example, with the example configuration above, if an entity called 'light.master_bedroom_dimmer' is turned on, this component will publish on to homeassistant/light/master_bedroom_dimmer/state.

If that entity also has an attribute called brightness, the component will also publish the value of that attribute to homeassistant/light/master_bedroom_dimmer/brightness.

All states and attributes are passed through JSON serialization before publishing. Please note that this causes strings to be quoted (e.g., the string 'on' will be published as '"on"'). You can access the JSON deserialized values (as well as unquoted strings) at many places by using value_json instead of value.

The last_updated and last_changed values for the entity will be published to homeassistant/light/master_bedroom_dimmer/last_updated and homeassistant/light/master_bedroom_dimmer/last_changed, respectively. The timestamps are in ISO 8601 format - for example, 2017-10-01T23:20:30.920969+00:00.