Scheduler card/custom component

Hi,

does someone has a ready-to-use snippet to add a slider for light-color-temperature (kelvin) to the card when adding a schedule for a light? Having brightness, but no kelvin slider here.

Tried several times with actions, but always ending up with an additional action field. However my goal is to have an additional slider under the brightness slider for the “normal” turn on action.

Any help greatly appreciated

Many thanks!

Hi,
Thanks for this awesome custom scheduler card integration.

A small issue I have is that when I want a time slot of the least duration possible (1 minute), I find it a bit difficult to adjust the time markers to the exact minute I want, on the scheme time-bar, even when the dialog is expanded to almost full width of my desktop PC.

Having a couple of additional clickable (in addition to the draggable marker) buttons located beside the existing “Add” and “Remove” buttons to move the selected (last clicked) time marker to the left or right by the configured time_step would solve the problem for me. Another solution could be to use the left and right arrow keys on the keyboard to move the marker which has focus, by the time_step amount. Is this doable? Or is there a better way to do it, which I missed?

Thanks,
Ajith

HI,

thank you for the great schedule. I think i found a problem with time zones in the schedule card. Look @ the screenshot. I am in TZ Berlin/Europe.

The problem is only displayed in the overview screen of the various schedulers.
In the entity / detail card to edit the time, it shows the correct time 02:00.

Is that a bug, or can i something do?

EDIT: I found the failure. The Desktop System that i use for this has the wrong time. Setup right, right time. Problem SOLVED.

Best Regards,
Mitch

Sorry if this has been discussed already. I’d like to have an instance of the schedueler card in each of the bed room area’s of my cids. Now I can 7doe this, but the scheduels of the other bed rooms will show in each card. How can I separate this?

Guido1, when you edit the dashboard to edit a Scheduler card, at the bottom of the OTHER section of the card configuration there’s a TAG section. Use that to limit what schedules a schedule card will display.

hello,

i try to edit timeslot of my scheduler.

is it working, after a lot of test i can edit by script or automation my scheduler.

action: scheduler.edit
data:
  entity_id: switch.schedule_1_dmd_chauffage
  timeslots:
    - start: "00:00:00"
      stop:  "05:00:00"
      actions:
        - service: climate.set_temperature
          entity_id: climate.trv_chambrenous1
          service_data:
            hvac_mode: heat
            temperature: 16
    - start: "05:00:00"
      stop: "08:00:00"
      actions:
        - service: climate.set_temperature
          entity_id: climate.trv_chambrenous1
          service_data:
            hvac_mode: heat
            temperature: 19
    - start: "08:00:00"
      stop: "00:00:00"
      actions:
        - service: climate.set_temperature
          entity_id: climate.trv_chambrenous1
          service_data:
            hvac_mode: heat
            temperature: 16

this is working…
now i have an helper inputdatetime for program the wake up.
i would like to can be able to modify the 05:00:00 by the value of the input_datetime.

better, by the value of this input - 1h

each time i try to replace the “05:00:00” by something like
{{ states (‘input_datetime.reveil’) }}

is not working.

do you have any idea?

thank