Scheduler card issues

My scheduler card doesn’t appear as user friendly as shown in the following link

Specifically, the actions / entities are not selectable by icons, instead I have to click on “Add action” and search for the entity.

But that is not the main issue I am having. I am trying to schedule a script to run however the card does not automatically display the fields I have defined in my script. The script is configured correctly with variables as confirmed by creating an automation that calls it. I’m not sure what I am doing wrong…

Below is the script I use to switch on my heating via thermostat, as I mentioned it works fine.

alias: Heating_on
description: ""
fields:
  target_entity_standby:
    selector:
      entity:
        multiple: true
    default:
      - switch.heatmiser_office_standby
      - switch.heatmiser_upstairs_standby
  target_entity_temp:
    selector:
      number:
        min: 1
        max: 100
    name: target_temp_entity
    description: target decription
    required: true
    default: 19
sequence:
  - action: switch.turn_off
    metadata: {}
    data: {}
    target:
      entity_id: "{{ target_entity_standby }}"
  - delay:
      hours: 0
      minutes: 0
      seconds: 5
      milliseconds: 0
  - action: climate.set_temperature
    metadata: {}
    data:
      temperature: "{{ target_temperature }}"
    target:
      entity_id: "{{ target_entity_temp }}"

My scheduler card is configured to include the script as follows:

include:
  - light.dimmer_aaliya_bedroom
  - light.dimmer_2_inaaya
  - light.dimmer_main_bedroom
  - light.dimmer_2
  - climate.black_trv_thermostat
  - light.dimmer_inaaya_bedroom
  - light.dimmer_rear_living
  - script.heating_on
exclude: []
discover_existing: true
title: true
show_header_toggle: false
time_step: 15
default_editor: scheme
display_options:
  primary_info: default
  secondary_info:
    - relative-time
    - additional-tasks
  icon: action
sort_by:
  - state
  - relative-time
customize: {}
tags: []
exclude_tags: []
standard_configuration: true
type: custom:scheduler-card

However when I add an action to my scheduler to run the script, there is no option to set the fields…

1 Like