mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-23 17:27:19 +00:00
Service call with a native dictionary (#19922)
This commit is contained in:
parent
302e81d8ee
commit
99b3511c31
@ -108,6 +108,23 @@ data:
|
|||||||
```
|
```
|
||||||
|
|
||||||
{% endraw %}
|
{% endraw %}
|
||||||
|
|
||||||
|
You can use a template returning a native dictionary as well, which is useful if the attributes to be set depend on the situation.
|
||||||
|
|
||||||
|
{% raw %}
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
service: climate.set_temperature
|
||||||
|
data: >
|
||||||
|
{% if states('sensor.temperature_living') < 19 %}
|
||||||
|
{"hvac_mode": "heat", "temperature": 19 }
|
||||||
|
{% else %}
|
||||||
|
{"hvac_mode": "auto" }
|
||||||
|
{% endif %}
|
||||||
|
```
|
||||||
|
|
||||||
|
{% endraw %}
|
||||||
|
|
||||||
### `homeassistant` services
|
### `homeassistant` services
|
||||||
|
|
||||||
There are four `homeassistant` services that aren't tied to any single domain, these are:
|
There are four `homeassistant` services that aren't tied to any single domain, these are:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user