MQTT Time

The MQTT Time integrationIntegrations connect and integrate Home Assistant with your devices, services, and more. [Learn more] allows you to integrate devices that expose a control to set the time.

Configuration

To use an MQTT time entity in your installation, add the following to your configuration.yamlThe configuration.yaml file is the main configuration file for Home Assistant. It lists the integrations to be loaded and their specific configurations. In some cases, the configuration needs to be edited manually directly in the configuration.yaml file. Most integrations can be configured in the UI. [Learn more] file. After changing the configuration.yamlThe configuration.yaml file is the main configuration file for Home Assistant. It lists the integrations to be loaded and their specific configurations. In some cases, the configuration needs to be edited manually directly in the configuration.yaml file. Most integrations can be configured in the UI. [Learn more] file, restart Home Assistant to apply the changes.

# Example configuration.yaml entry
mqtt:
  time:
    - command_topic: command-topic

Alternatively, a more advanced approach is to set it up via MQTT discovery.

Configuration Variables

availability list (Optional)

A list of MQTT topics subscribed to receive availability (online/offline) updates. Must not be used together with availability_topic.

payload_available string (Optional, default: online)

The payload that represents the available state.

payload_not_available string (Optional, default: offline)

The payload that represents the unavailable state.

topic string Required

An MQTT topic subscribed to receive availability (online/offline) updates.

value_template template (Optional)

Defines a template to extract the device’s availability from the topic. To determine the device’s availability, the result of this template will be compared to payload_available and payload_not_available.

availability_topic string (Optional)

The MQTT topic subscribed to receive availability (online/offline) updates. Must not be used together with availability.

availability_mode string (Optional, default: latest)

When availability is configured, this controls the conditions needed to set the entity to available. Valid entries are all, any, and latest. If set to all, payload_available must be received on all configured availability topics before the entity is marked as online. If set to any, payload_available must be received on at least one configured availability topic before the entity is marked as online. If set to latest, the most recent payload_available or payload_not_available received on any configured availability topic determines availability.

availability_template template (Optional)

Defines a template to extract the device’s availability from the availability_topic. To determine the device’s availability, the result of this template will be compared to payload_available and payload_not_available.

command_template template (Optional)

Defines a template to generate the payload to send to command_topic.

command_topic string Required

The MQTT topic to publish the time value that is set in ISO format.

default_entity_id string (Optional)

Use default_entity_id instead of name for automatic generation of the entity ID. For example, time.foobar. When used without a unique_id, the entity ID will update during restart or reload if the entity ID is available. If the entity ID already exists, it will be created with a number appended. When used with a unique_id, the default_entity_id is only used when the entity is added for the first time. When set, this overrides a user-customized entity ID if the entity was deleted and added again.

device map (Optional)

Device information for this time entity. Used to link the entity to a device in the device registry. Only works when unique_id is set. At least one of identifiers or connections is required to identify the device.

configuration_url string (Optional)

A link to the webpage that can manage the configuration of this device. Can be either an http://, https:// or an internal homeassistant:// URL.

connections list (Optional)

A list of device connections to the outside world, each specified as a tuple of [connection_type, connection_identifier]. For example, the MAC address of a network interface: "connections": [["mac", "02:5b:26:a8:dc:12"]].

hw_version string (Optional)

The hardware version of the device.

identifiers list | string (Optional)

A list of IDs that uniquely identify the device. For example, a serial number.

manufacturer string (Optional)

The manufacturer of the device.

model string (Optional)

The model of the device.

model_id string (Optional)

The model identifier of the device.

name string (Optional)

The name of the device.

serial_number string (Optional)

The serial number of the device.

suggested_area string (Optional)

Suggest an area if the device isn’t in one yet.

sw_version string (Optional)

The firmware version of the device.

via_device string (Optional)

Identifier of a device that routes messages between this device and Home Assistant. Examples of such devices are hubs, or parent devices of a sub-device. This is used to show device topology in Home Assistant.

enabled_by_default boolean (Optional, default: true)

Controls whether this entity is enabled by default. When set to true, the entity is enabled and usable immediately. Disabled entities are hidden by default until you enable them from the device page.

encoding string (Optional, default: utf-8)

The encoding used for received payloads and published messages. Set to "" to disable decoding of incoming payload.

entity_category string (Optional)

The category of the entity.

entity_picture string (Optional)

Picture URL for the entity.

icon icon (Optional)

Icon for the entity.

json_attributes_template template (Optional)

Defines a template to extract the JSON dictionary from messages received on the json_attributes_topic.

json_attributes_topic string (Optional)

The MQTT topic subscribed to for receiving a JSON dictionary payload that sets the entity attributes. Implies force_update of the current time state when a message is received on this topic.

name string (Optional, default: MQTT Time)

The name of the time entity. Can be set to null if only the device name is relevant.

platform string Required

Must be time. Only allowed and required in MQTT auto discovery device messages.

qos integer (Optional, default: 0)

The maximum QoS level to be used when receiving and publishing messages.

retain boolean (Optional, default: false)

If the published message should have the retain flag on or not.

state_topic string (Optional)

The MQTT topic subscribed to receive time state updates. Time state updates should contain a parsable time string, such as ‘12:33:00’ or ‘3:34 PM’. If a date/time structure is passed, only the time component will be used. Can be used with value_template to render the incoming payload to a parsable time string.

unique_id string (Optional)

An ID that uniquely identifies this time entity. If two time entities have the same unique ID, Home Assistant will raise an exception. Required when used with device-based discovery.

value_template template (Optional)

Defines a template to extract the time state value from the payload received on state_topic.

Important

Make sure that your topic matches exactly. some-topic/ and some-topic are different topics.

Examples

This is an example of a manual configured MQTT time item.

# Example configuration.yaml entry
mqtt:
  time:
    - name: "Scheduled task"
      icon: mdi:ab-testing
      command_topic: "timer/start"
      state_topic: "timer/start_state"