How To - need help

Hello,
I’m new in this business. I just started with some tests.
But now I want to create a own Card for my rooms.
Perhaps somebody can help me, how to set up my script to bundle all needed information in one card for each room.
Attachted a simple pic as examplewish

What do I want?
A card with a big symbol for the room and additional information - in this example the temperature. At the side additional symbols for (i.e.)

  • shutter status
  • light group status
  • door status
  • motion status

How can I crate this? Help would be great… thanks to all.

And perhaps a sample script for groups.yaml - to demonstrate how to bundle two lights for this card.
THANKS :blush:

Picture Entity card with entities for each sensor or control you want.

Hmm, currently I solved the problem following:

- card: null
        entities:
          - entities:
              - entity: light.bloom_wohnzimmer
                icon: 'mdi:lamp'
                tap_action:
                  action: toggle
              - entity: light.echo_show_schalter_3
                icon: 'mdi:power-socket-eu'
                name: Alexa
                tap_action:
                  action: toggle
              - entity: light.licht_whz
                icon: 'mdi:lightbulb-outline'
                tap_action:
                  action: toggle
              - entity: light.aussenlicht_schalter_5
                icon: 'mdi:window-shutter'
                tap_action:
                  action: toggle
            entity: light.kugellampe_wohnzimmer
            icon: 'fas:couch'
            name: Wohnen
            secondary_info:
              entity: sensor.sensor_1_temperature
              name: ''
            show_state: false
            type: 'custom:multiple-entity-row'
        type: entities

But there a few issues:

  • I can’t make my room symbol bigger
  • and the room symbol is currently a light - so the color change
  • also it would be great, if the additional icons could be below the temperature, so the card could be smaller.

Could anyone give me an advise?