I’m trying to write a simple automation to return the heating set point of the climate component to 19 degrees. I’ve checked with the online docs which look exactly the same as my yaml, but I keep getting " Invalid Config".
- alias: Reset Lounge Temperature
trigger:
platform: time
at: "06:00:00"
action:
- service: climate.set_temperature
data:
entity_id: climate.lounge
temperature: 19
I’m assuming the code has changed but have searched & can find no reference to the update ?
For reference this is the info get in the log:
2018-11-27 07:59:25 ERROR (MainThread) [homeassistant.config] Invalid config for [automation]: [action] is an invalid option for [automation]. Check: automation->trigger->0->action. (See /config/configuration.yaml, line 68). Please check the docs at https://homeassistant.io/components/automation/
The reference to line 68 in config/configuration is !include automations.yaml
Thanks