Karten im dashboard nur saisonal anzeigen

Wenn es dir reicht, einfach nur mit der Jahreszeit zu arbeiten, kannst du die von @anon90710413 genannte Seasons Integration nutzen.

Einfach bei den Integrationen “Seasons” mit einbinden und meteorologisch oder astronomisch (kalendarisch) als Auswahl setzen und dann wird eine neue Entität “sensor.season” angelegt.

Diese kannst du mit der Bedingungen-Karte sogar grafisch konfigurieren.

habe meine Aufgabenstellung bereits gelöst und zwar so:

type: conditional
conditions:
  - entity: sensor.sommermonate
    state: 'on'
card:
  type: grid
  cards:
    - show_name: true
      show_icon: true
      type: button
      tap_action:
        action: toggle
      entity: input_boolean.helfer_ac
      name: Klima
      show_state: true
    - show_name: true
      show_icon: true
      type: button
      tap_action:
        action: toggle
      entity: switch.arktis_860w_switch
      name: Arktis7500
      icon: mdi:air-conditioner
      show_state: true
    - type: entity
      entity: sensor.arktis_860w_active_power
      name: Verbrauch
    - show_name: true
      show_icon: true
      type: button
      tap_action:
        action: toggle
      entity: button.10002607f5_6
      name: Ventilator
      icon: mdi:ceiling-fan
      show_state: true
    - show_name: true
      show_icon: true
      type: button
      tap_action:
        action: toggle
      entity: button.1000734991_8
      name: Wohnen
      icon: mdi:fan
      show_state: true
    - show_name: true
      show_icon: true
      type: button
      tap_action:
        action: toggle
      entity: button.1000734991_9
      icon: mdi:fan-off
      name: Wohnen
      show_state: true
    - show_name: true
      show_icon: true
      type: button
      tap_action:
        action: toggle
      entity: button.1000734991_16
      name: Fan out
      icon: mdi:fan
      show_state: true
    - show_name: true
      show_icon: true
      type: button
      tap_action:
        action: toggle
      entity: button.1000734991_17
      name: Fan out
      icon: mdi:fan-off
      show_state: true

mit folgendem Eintrag in der yaml-config

  - sensor:
    - name: "Sommermonate"
      unique_id: jsdhfh3-29kdjd-38490jdjs
      icon: mdi:calendar
      state: >
        {% if now().month >= 5 and now().month < 10 %}
          on
        {% else %}
          off
        {% endif %}

und eine 2. Karte für die Wintermonate …