Hi i need some help regarding automation to turn on HVAC unit based on days of week. I have it like this:```yaml
alias: HVAC
description: ""
trigger:
- platform: time
at: "8:00:00"
condition: - condition: time
weekday:- mon
- tue
- wed
- thu
- fri
action:
- device_id: ******
domain: climate
entity_id: climate.HVAC
type: set_hvac_mode
hvac_mode: cool
mode: single``` and it only turns on at 8:00, i want to have it so that it turns on at different times depending on the day. Ex: Monday: at 11:00, Tuesday: at 9:45, etc... Can this be done?