I started getting this error while leaving and entering my “home” zone. It is refering to an automation I have that sets my ecobee to away when all devices are no longer home. I am not sure how to change the automation to fix it. At the end of the error it says to use entity_id: all, but I am not sure if that is the right choice since it seems that it would be literally calling every device since there is no specification that refers only to devices. Here is the error
“Not passing an entity ID to a service to target all entities is deprecated. Update your call to climate.set_away_mode to be instead: entity_id: all”
Its functioning at the moment, but I am afraid that within the next couple releases it will not. Any idea of why its giving me this error and how to fix it?
Here are the two automations it is throwing the error with
- id: '1545191981656'
alias: Thermostat Away
trigger:
- entity_id: group.all_devices
from: home
platform: state
to: not_home
condition: []
action:
- data:
away_mode: 'true'
service: climate.set_away_mode
- id: '1545192246584'
alias: Thermostat Home
trigger:
- entity_id: group.all_devices
from: not_home
platform: state
to: home
condition: []
action:
- data:
away_mode: 'false'
service: climate.set_away_mode