david1
(David)
March 15, 2020, 2:40am
1
- title: Lights
path: lights_path
type: custom:layout-card
cards:
- type: custom:homekit-card
entities:
- title: Living Room
popup:
type: custom:light-popup-card
scenesInARow: 4
brightnessWidth: 130px
brightnessHeight: 350px
switchWidth: 110px
switchHeight: 300px
entities:
- entity: light.tv_light_1
- entity: light.tv_light_2
- entity: light.living_room_light
- entity: light.living_room_light_r
this is what i have now, how would i add more row’s like this? https://community-assets.home-assistant.io/original/3X/9/6/96d60b11a11c4c8a9050dafe48d76ca4cd041c09.gif
lolouk44
(lolouk44)
March 16, 2020, 9:00pm
2
Create a new card. it should show up on the side…
If it doesn’t, put both card groups under an horizontal stack to have 2 columns
lolouk44
(lolouk44)
March 16, 2020, 9:06pm
4
something like this:
type: horizontal-stack
title: Lights
cards:
- type: custom:homekit-card
entities:
- title: Living Room
popup:
type: custom:light-popup-card
scenesInARow: 4
brightnessWidth: 130px
brightnessHeight: 350px
switchWidth: 110px
switchHeight: 300px
entities:
- entity: light.tv_light_1
- entity: light.tv_light_2
- entity: light.living_room_light
- entity: light.living_room_light_r
- type: custom:homekit-card
entities:
- title: Kitchen
popup:
type: custom:light-popup-card
scenesInARow: 4
brightnessWidth: 130px
brightnessHeight: 350px
switchWidth: 110px
switchHeight: 300px
entities:
- entity: light.tv_light_1
- entity: light.tv_light_2
- entity: light.living_room_light
- entity: light.living_room_light_r
david1
(David)
March 16, 2020, 9:12pm
5
any chance i can make them side by side? i’ll be adding more rooms
lolouk44
(lolouk44)
March 16, 2020, 9:16pm
6
that’s kinda the whole point of an horizontal stack… I’m not sure what you’re asking now…
david1
(David)
March 16, 2020, 9:17pm
7
they are on top of each other, thought it would be like a column with the two different groups so that it scrolls verically not horizontally
lolouk44
(lolouk44)
March 16, 2020, 9:18pm
8
maybe it’s a limitation linked to the fact that you’re trying to use the custom:homekit-card
card
What if you only list 1 entity per group? Do you have 2 columns?