Hey there,
I'm trying out Home Assistant by creating a button that on press sets my washing machine to start at 60°c cotton program to finish tomorrow on 8 o'cock (rounding by a minute) in the morning. So far I got
data:
device_id: <My device ID>
affects_to: active_program
program: laundry_care_washer_program_cotton
b_s_h_common_option_finish_in_relative: |
{% set target = today_at("08:00") %} {% if now() > target %}
{% set target = target + timedelta(days=1) %}
{% endif %} {{(((as_timestamp(target) - as_timestamp(now()))//60)*60) | int
}}
laundry_care_washer_option_temperature: laundry_care_washer_enum_type_temperature_g_c_60```
the Home_connenct (bosh washer) takes this call without throwing an error and sets up the proper time and program but seems to ignore the temperature without an error.
The home connect api docs define the key
```"LaundryCare.Washer.Option.Temperature"```
with en enum input with one option
```60 °C clothes
Key: LaundryCare.Washer.EnumType.Temperature.GC60
Description: Optimal for 60 °C washable clothes```
Home Assistant shows that
select.waschmaschine_temperatur has the options
```laundry_care_washer_enum_type_temperature_g_c_90, laundry_care_washer_enum_type_temperature_g_c_20, laundry_care_washer_enum_type_temperature_g_c_30, laundry_care_washer_enum_type_temperature_g_c_70, laundry_care_washer_enum_type_temperature_g_c_50, laundry_care_washer_enum_type_temperature_g_c_60, laundry_care_washer_enum_type_temperature_g_c_80, laundry_care_washer_enum_type_temperature_g_c_40, laundry_care_washer_enum_type_temperature_cold ```
Anyone got any help, pls.
I feel like I'm missing something obvious here but am in too deep to see.