logseq_kauer/pages/Eine Entität dynamisch im S...

14 lines
456 B
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

tags:: Home-Assistant
- Es ist nicht möglich, die Variable direkt für den Namen einer Entität zu verwenden. Das funktioniert nur über die Verwendung eines "data_templates".
- ``` yaml
- service: scene.turn_on
    data_template:
      entity_id: >
        {% if now().hour > 5 and now().hour < 12 %}
          scene.attic_breakfast_time
        {% else %}
          scene.taglicht
        {% endif %}
```
-