Hi!
Why does this work?
action: kia_uvo.schedule_charging_and_climate
data:
device_id: ...
charging_enabled: true
first_departure_enabled: true
first_departure_days:
- "1"
- "2"
- "3"
- "4"
- "5"
first_departure_time: "07:10:00"
off_peak_charge_only_enabled: true
climate_enabled: true
temperature: 18
temperature_unit: "0"
defrost: true
off_peak_start_time: "01:00:00"
off_peak_end_time: "06:00:00"
But this does not:
action: kia_uvo.schedule_charging_and_climate
data:
device_id: ...
charging_enabled: true
first_departure_enabled: true
first_departure_days:
- "1"
- "2"
- "3"
- "4"
- "5"
first_departure_time: "07:10:00"
off_peak_start_time: >-
{{ states('input_datetime.auto_laadimise_algusaeg') }}
off_peak_end_time: >-
{{ states('input_datetime.auto_laadimise_lopp_80') }}
off_peak_charge_only_enabled: true
climate_enabled: true
temperature: 18
temperature_unit: "0"
defrost: true
First version of the code sets the charging start and end times, but second version with input_datetime helpers does not.
There is no error, but charging schedule is disabled in Hyundai app.
Thank you!
