Finalize release 0.10 blogpost

This commit is contained in:
Paulus Schoutsen 2015-12-22 01:38:06 -08:00
parent 4ae724bcc6
commit 61192ae960
3 changed files with 114 additions and 8 deletions

View file

@ -91,7 +91,11 @@ Home Assistant adds extensions to allow templates to access all of the current s
Paulus is at {{ states('device_tracker.paulus')) }}.
{% endif %}
{{ states.sensor.temperature | multiply(10) | round(2) }}{% endraw %}
{{ states.sensor.temperature | multiply(10) | round(2) }}
{% if states('sensor.temperature') | float > 20 %}
It is warm!
{%endif %}{% endraw %}
```
## {% linkable_title Processing incoming data %}