Home Assistant - WLANThermo

flipflop78

New member
Hi,
erstmal vielen Dank für deine Geduld und Hilfe. Irgendwie hat es jetzt geklappt. Der Konfigurationsfehler wird jetzt nicht mehr angezeigt.
Es könnte damit zusammen hängen, dass ich keinen Fühler angeschlossen hatte.
Fühler angeschlossen, HA Neustart und seitdem geht es.

Vielleicht haben wir auch ein paar mal aneinander vorbei geredet.....
Mein HA sieht so aus:
1775032896314.png
Wenn ich das Dashboard (vielleicht ist das auch nicht der richtige Ausdruck) unter Übersicht (eckige Umrandung) einfügen möchte, dann kann ich das nicht einfach auf dem von dir beschriebenen Weg. Denn dann lösche ich die Konfiguration der restlichen Dashboards.
Da muss ich dann etwas tricksen.
Wenn ich das Dashboard links in der Leiste einfügen (runde Umrandung) will, klappt es wie auf dem von dir beschriebenen Weg.

Generell sieht es super aus und ist es genau das, was ich gesucht habe. Deutlich einfacher als über MQTT :)
VIELEN DANK für deine Arbeit!!!
 

Moritz82

Member
Yes, wenn du das als Panel nur hast in einem anderen Dashboard, geht das nicht so wie beschrieben. Gut aber das du es gelöst hast.
 

flipflop78

New member
Ja, wenn man weiß wie alles heißt, kann man es auch ordentlich beschreiben.

Für alle, die das Problem auch haben oder es als Panel in einem Dashboard lösen wollen, ist hier der Weg:

ACHTUNG: Ich habe alle Bluetooth Entitäten entfernt.

Im gewünschten Dashboard auf den Stift gehen
1775036038247.png

Add view klicken:
1775036107173.png


Panel (single card) auswählen

1775036250006.png

Titel und Icon auswählen, dann speichern:
1775036326739.png

Add Card und Manual auswählen:
1775036428880.png

In der Card-Configuration alles löschen und diesen Code einfügen:

YAML:
type: grid
columns: 1
square: false
cards:
  - type: custom:auto-entities
    card:
      type: grid
      columns: 8
      square: false
    filter:
      include:
        - options:
            type: custom:button-card
            template: wlt_kanal_button
          entity_id: sensor.wlanthermo_kanal_*_temperatur
      exclude:
        - options: {}
          state: unavailable
        - options: {}
          state: unknown
    sort:
      method: attribute
      attribute: id
      numeric: true
    card_param: cards
  - type: grid
    columns: 2
    square: false
    cards:
      - type: grid
        columns: 1
        square: false
        cards:
          - type: custom:auto-entities
            card:
              type: history-graph
              hours_to_show: 1
              fit_y_data: false
              min_y_axis: 10
              max_y_axis: 100
            filter:
              include:
                - options: {}
                  entity_id: sensor.wlanthermo_kanal_*_temperatur
              exclude:
                - options: {}
                  state: unavailable
                - options: {}
                  state: unknown
            sort:
              method: entity_id
            card_param: entities
      - type: grid
        columns: 1
        square: false
        cards:
          - type: custom:auto-entities
            card:
              type: grid
              columns: 2
              square: false
            filter:
              include:
                - entity_id: sensor.wlanthermo_pitmaster_*_temperatur
                  options:
                    type: custom:button-card
                    template: wlt_pitmaster_button
              exclude:
                - state: unavailable
                - state: unknown
            sort:
              method: entity_id
            card_param: cards
          - type: grid
            columns: 4
            square: false
            cards:
              - type: custom:button-card
                entity: sensor.wlanthermo_batteriestand
                name: Akku
                icon: mdi:battery
                template: wlt_status_charge
              - type: custom:button-card
                entity: sensor.wlanthermo_signalstarke
                name: WLAN
                icon: mdi:wifi
                template: wlt_status_signal
              - type: custom:button-card
                entity: sensor.wlanthermo_cloud_status
                template: wlt_cloud_button
              - type: custom:button-card
                entity: sensor.wlanthermo_system_info
                name: System Info
                icon: mdi:cog-outline
                template: wlt_status_info
              - type: custom:button-card
                entity: sensor.wlanthermo_ladevorgang_batterie
                name: Ladung
                icon: mdi:power-plug
                template: wlt_status_info
              - type: custom:button-card
                entity: switch.wlanthermo_iot_mqtt_aktivieren
                name: MQTT
                template: wlt_mqtt_button
              - type: custom:button-card
                entity: sensor.wlanthermo_system_zeit
                name: Zeit
                icon: mdi:clock
                template: wlt_status_info
              - type: custom:button-card
                entity: sensor.wlanthermo_gerate_info
                name: Geräteinfo
                icon: mdi:devices
                template: wlt_status_info
          - type: custom:auto-entities
            card:
              type: grid
              columns: 4
              square: false
            filter:
              include:
                - entity_id: text.wlanthermo_pid_profil_*_name
                  options:
                    type: custom:button-card
                    template: wlt_pitprofil_button
            sort:
              method: entity_id
            card_param: cards
          - type: grid
            columns: 2
            square: false
            cards:
              - type: custom:button-card
                entity: switch.wlanthermo_push_pushover_aktiv
                name: Benachrichtigungen
                icon: mdi:battery
                template: wlt_notification_button
              - type: custom:button-card
                entity: switch.wlanthermo_bluetooth_aktiv
                name: Bluetooth
                icon: mdi:battery
                template: wlt_bluetooth_button
  - type: custom:auto-entities
    card:
      type: custom:apexcharts-card
      update_interval: 5sec
      header:
        show: false
        show_states: true
      apex_config:
        chart:
          height: 400
      yaxis:
        - id: "1"
          opposite: true
          min: 0
          max: 100
        - id: "0"
          min: 0
          max: 200
          opposite: false
    filter:
      include:
        - entity_id: sensor.wlanthermo_pitmaster_*_leistung
          options:
            yaxis_id: "1"
            stroke_width: 1
            type: area
            opacity: 0.25
            curve: stepline
        - entity_id: sensor.wlanthermo_pitmaster_*_temperatur
          options:
            yaxis_id: "0"
            stroke_width: 1
        - entity_id: sensor.wlanthermo_kanal_*_temperatur
          options:
            yaxis_id: "0"
            stroke_width: 3
    sort:
      method: entity_id
    card_param: series
 

Anhänge

  • 1775036955299.png
    1775036955299.png
    49.1 KB · Aufrufe: 1
  • 1775036794890.png
    1775036794890.png
    65.4 KB · Aufrufe: 1
  • 1775036663960.png
    1775036663960.png
    134.7 KB · Aufrufe: 1
  • 1775036622158.png
    1775036622158.png
    53.2 KB · Aufrufe: 1
  • 1775036411097.png
    1775036411097.png
    247 KB · Aufrufe: 0
Oben Unten