mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-19 15:26:59 +00:00
Fix liquid warnings
This commit is contained in:
parent
4dadf68aa3
commit
a3bda5dde1
@ -63,7 +63,7 @@ sensor:
|
|||||||
queries:
|
queries:
|
||||||
- name: last value of foo
|
- name: last value of foo
|
||||||
unit_of_measurement: °C
|
unit_of_measurement: °C
|
||||||
value_template: '{{ value | round(1) }}'
|
value_template: '{% raw %}{{ value | round(1) }}{% endraw %}'
|
||||||
group_function: last
|
group_function: last
|
||||||
where: '"name" = ''foo'''
|
where: '"name" = ''foo'''
|
||||||
measurement: '"°C"'
|
measurement: '"°C"'
|
||||||
@ -71,7 +71,7 @@ sensor:
|
|||||||
database: db1
|
database: db1
|
||||||
- name: Min for last hour
|
- name: Min for last hour
|
||||||
unit_of_measurement: '%'
|
unit_of_measurement: '%'
|
||||||
value_template: '{{ value | round(1) }}'
|
value_template: '{% raw %}{{ value | round(1) }}{% endraw %}'
|
||||||
group_function: min
|
group_function: min
|
||||||
where: '"entity_id" = ''salon'' and time > now() - 1h'
|
where: '"entity_id" = ''salon'' and time > now() - 1h'
|
||||||
measurement: '"%"'
|
measurement: '"%"'
|
||||||
|
@ -30,7 +30,7 @@ Configuration variables:
|
|||||||
- **name** (*Optional*): Name of the REST switch.
|
- **name** (*Optional*): Name of the REST switch.
|
||||||
- **body_on** (*Optional*): The body of the POST request that commands the switch to become enabled. Default is "ON". This value can be a [template](/topics/templating/), which is useful if the POST request needs to depend on the state of the system. For example, to enable remote-temperature-sensor tracking on a radio thermostat, one has to send the current value of the remote temperature sensor. On can achieve this using the template `'{"rem_temp":{{states.sensor.bedroom_temp.state}}}'`.
|
- **body_on** (*Optional*): The body of the POST request that commands the switch to become enabled. Default is "ON". This value can be a [template](/topics/templating/), which is useful if the POST request needs to depend on the state of the system. For example, to enable remote-temperature-sensor tracking on a radio thermostat, one has to send the current value of the remote temperature sensor. On can achieve this using the template `'{"rem_temp":{{states.sensor.bedroom_temp.state}}}'`.
|
||||||
- **body_off** (*Optional*): The body of the POST request that commands the switch to become disabled. Default is "OFF". This value can also be a template.
|
- **body_off** (*Optional*): The body of the POST request that commands the switch to become disabled. Default is "OFF". This value can also be a template.
|
||||||
- **is_on_template** (*Optional*): A [template](/topics/templating/) that determines the state of the switch from the value returned by the GET request on the resource url. This template should compute to a boolean (True or False). Default is equivalent to `'{{ value.json == body_on }}'`. This means that by default, the state of the switch is on if and only if the response to the GET request matches `body_on`.
|
- **is_on_template** (*Optional*): A [template](/topics/templating/) that determines the state of the switch from the value returned by the GET request on the resource url. This template should compute to a boolean (True or False). Default is equivalent to `'{% raw %}{{ value.json == body_on }}{% endraw %}'`. This means that by default, the state of the switch is on if and only if the response to the GET request matches `body_on`.
|
||||||
|
|
||||||
|
|
||||||
<p class='note warning'>
|
<p class='note warning'>
|
||||||
|
@ -57,7 +57,7 @@ If you need to generate codes for switches you can use a template (usefull for e
|
|||||||
- Go to home-assistant-IP:8123/dev-template
|
- Go to home-assistant-IP:8123/dev-template
|
||||||
- Use this code to generate a code:
|
- Use this code to generate a code:
|
||||||
```yaml
|
```yaml
|
||||||
0b11000{{ range(0,700) | random | int }}bc0cfe0{{ range(0,10) | random | int }}010f70
|
{% raw %}0b11000{{ range(0,700) | random | int }}bc0cfe0{{ range(0,10) | random | int }}010f70{% endraw %}
|
||||||
```
|
```
|
||||||
- Use this code to add a new switch in your configuration.yaml
|
- Use this code to add a new switch in your configuration.yaml
|
||||||
- Launch your homeassistant and go the website.
|
- Launch your homeassistant and go the website.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user