Hi,
I’m trying to create an automation for my tado which sets the operation mode to ‘auto’ at midnight.
I created the following rule:
- id: ''
alias: Set Tado to auto at midnight
description: ''
trigger:
- at: 0:00
platform: time
condition: []
action:
- data:
mode: auto
temperature: 15
entity_id: climate.verwarming
service: climate.set_temperature
The service climate.set_temperature needs at least one of temperature, target_temp_high, target_temp_low.
And mode isn’t allowed… (Invalid data for call_service at pos 1: extra keys not allowed @ data[‘mode’])
Does anybody know how the data part needs to be to get the tado in auto operation?