Time triggered events with weekday?

I did my first time based automations, and I’m not sure if this is the best way. I can see no weekday choice when I make a time trigger. What I did therefore ist:
I want to change target temperature of a radiator at 12:00 on weekdays
So I set a time trigger to 12:00 and a “And If” with a time of 11:00 and the weekdays I want. Looks like this:

alias: A_Küche_Wochentag_Mittag_Heizung_An
description: ""
triggers:
  - trigger: time
    at: "12:05:00"
conditions:
  - condition: time
    after: "11:00:00"
    weekday:
      - fri
      - thu
      - wed
      - tue
      - mon
actions:
  - action: climate.set_temperature
    metadata: {}
    data:
      temperature: 21
    target:
      device_id: 45b483d32213570a5df4eeadac9ec26a
mode: single

is this really the way to go? Why no weekday choice directly at the time trigger?

I had better luck with Scheduler, it offers workdays schedules out of the box and can be used to set a complete schedule for climates.

that sounds interesting… I installed both components via HACS, but where do I find the scheduler card?
Edit: found it :wink: Has to be added to a dashboard

When I use the presets for heating (Eco&Comfort), what temperatures are that? Can I edit those? In my “old” automation I have set target temperature
I’m using Fritz DECT devices on the radiators

Presets are based on your climate integration. You can choose the action ‘Heat’ instead and set the desired temperature.

ah ok… yep, just found the temperature slider, will use that, thanks