Skip to content

Commit 37aad44

Browse files
authored
Merge pull request #677 from larsimmisch/larsimmisch/mqtt-docs
Document @mqtt_trigger wildcards, add an example
2 parents ed6b459 + 916b686 commit 37aad44

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

docs/reference.rst

+13
Original file line numberDiff line numberDiff line change
@@ -791,9 +791,22 @@ optional ``kwargs`` argument to a ``dict`` with the keywords and values.
791791
Wildcards in topics are supported. The ``topic`` variables will be set to the full expanded topic
792792
the message arrived on.
793793

794+
Wildcards are:
795+
- ``+`` matches a single level in the topic hierarchy.
796+
- ``#`` matches zero or more levels in the topic hierarchy, can only be last.
797+
794798
NOTE: The `MQTT Integration in Home Assistant <https://www.home-assistant.io/integrations/mqtt/>`__
795799
must be set up to use ``@mqtt_trigger``.
796800

801+
.. code:: python
802+
803+
@mqtt_trigger('zigbee2mqtt/carport/motion', "payload_obj['occupancy'] != None")
804+
@time_active("range(sunset - 30m, sunrise - 30m)")
805+
def carport_motion():
806+
light.turn_on(entity_id="light.carport")
807+
task.sleep(300)
808+
light.turn_off(entity_id="light.carport")
809+
797810
@state_active
798811
^^^^^^^^^^^^^
799812

0 commit comments

Comments
 (0)