I want cards in a style like this:
I have made this with cards nested in a ‘entities’ card
title: Markisen
type: entities
entities:
- type: custom:mushroom-chips-card
chips:
- type: entity
entity: input_boolean.vorbau_markisen_automatik
content_info: none
icon: ''
tap_action:
action: toggle
icon_color: primary
- type: entity
entity: input_boolean.vorbau_markisen_verschattung_notwendig
tap_action:
action: none
content_info: none
icon_color: accent
- type: custom:mushroom-cover-card
entity: cover.vorbau_markisen_steuerung
icon: ''
show_position_control: false
show_tilt_position_control: false
show_buttons_control: true
name: Manuelle Bedienung
But it seems that this is only working with a few card types, especially with custom cards.
I want a similar one with the core thermostat card but this throws an error:
title: Thermostat
type: entities
entities:
- type: custom:mushroom-chips-card
chips:
- type: entity
entity: sensor.abstellraum_heizkreissteuerung_verteiler_garderobe_ventil
- type: thermostat
entity: climate.schlafzimmer_thermostat_wand
show_current_as_primary: true
Unknown type encountered: thermostat
I tried out the ‘custom:vertical-stack-in-card’, but on the one hand, the layout is not as desired (chips too close to the edge and no border around the thermostat card) and on the other hand, I actually want to avoid too many custom components.
Any other solutions for that?