is_state_attr(entity_id, name, value)
added (@andythigpen)binary_sensor
component.This release introduces templates. This will allow you to parse data before it gets processed or create messages for notifications on the fly based on data within Home Assistant. The notification component and the new Alexa/Amazon Echo component are both using the new template functionality to render responses. A template editor has been added to the developer tool section in the app so you can get instant feedback if your templates are working or not.
The temperature at home is {{ states('sensor.temperature') }}.
More information and examples can be found in the template documentation.
Templates will now be the only way to extract data from ‘raw’ sources like REST, CommandSensor or MQTT. This will replace any specific option that used to do this before. This means that precision
, factor
, attribute
or json_path
etc will no longer work.
Affected components and platforms:
To update, run pip3 install --upgrade homeassistant
.
mdi:
and stick it into your customize
section in configuration.yaml
:
homeassistant: customize: switch.ac: icon: 'mdi:air-conditioner'
customize
key in configuration.yaml
(@balloob)configuration.yaml
(@balloob)As part of this release we did some cleanup which introduced backwards incompatible changes:
Heat Control thermostat no longer includes scheduling features.
This feature has been removed completely. Use the automation component instead to control target temperature.
Config changed for calling a service from a script.
execute_service:
has been replaced with service:
. See component page for example. The old method will continue working for some time.
Scenes can no longer be turned off.
It is no longer possible to turn a scene off after it has been activated. The way it worked was unpredictable and causes a lot of confusion.
Downloader treats relative paths now relative to the config dir instead of the current working dir.
This makes more sense as most people run Home Assistant as a daemon