I’m trying to get an overview of where I can control all roller shutters as quickly and easily as possible. I wanted to do this based on the following items:
RaffstoresAlle (Type=RollershutterItem, State=100, Label=, Category=Blinds)
RaffstoresBuero (Type=RollershutterItem, State=100, Label=, Category=Blinds)
RaffstoresBad (Type=RollershutterItem, State=4, Label=, Category=Blinds)
RaffstoresSchlafzimmer (Type=RollershutterItem, State=100, Label=, Category=Blinds)
RaffstoresKueche (Type=RollershutterItem, State=100, Label=, Category=Blinds)
RaffstoresWohnzimmer1 (Type=RollershutterItem, State=100, Label=, Category=Blinds)
RaffstoresWohnzimmer2 (Type=RollershutterItem, State=4, Label=, Category=Blinds)
RaffstoresWohnzimmer3 (Type=RollershutterItem, State=4, Label=, Category=Blinds)
RaffstoresWohnzimmer4 (Type=RollershutterItem, State=4, Label=, Category=Blinds)
Using the following code on pages - new layout page - code area:
config:
label: Overview
blocks:
- component: oh-block
config:
title: Raffstores
slots:
default:
- component: oh-rollershutter-card
config:
item: RaffstoresAlle
title: Alle
- component: oh-rollershutter-card
config:
item: RaffstoresBad
title: Bad
- component: oh-rollershutter-card
config:
item: RaffstoresBuero
title: Büro
- component: oh-rollershutter-card
config:
item: RaffstoresKueche
title: Küche
- component: oh-rollershutter-card
config:
item: RaffstoresSchlafzimmer
title: Schlafzimmer
- component: oh-rollershutter-card
config:
item: RaffstoresWohnzimmer1
title: Wohnzimmer 1
- component: oh-rollershutter-card
config:
item: RaffstoresWohnzimmer2
title: Wohnzimmer 2
- component: oh-rollershutter-card
config:
item: RaffstoresWohnzimmer3
title: Wohnzimmer 3
- component: oh-rollershutter-card
config:
item: RaffstoresWohnzimmer4
title: Wohnzimmer 4
masonry: []
grid: null
canvas: null
Alternatively:
config:
label: Overview
blocks:
- component: oh-block
config:
title: Raffstores
slots:
default:
- component: oh-slider-card
config:
item: RaffstoresAlle
title: Alle
min: 0
max: 100
step: 1
scale: true
unit: "%"
- component: oh-slider-card
config:
item: RaffstoresBad
title: Bad
min: 0
max: 100
step: 1
scale: true
unit: "%"
- component: oh-slider-card
config:
item: RaffstoresBuero
title: Büro
min: 0
max: 100
step: 1
scale: true
unit: "%"
- component: oh-slider-card
config:
item: RaffstoresKueche
title: Küche
min: 0
max: 100
step: 1
scale: true
unit: "%"
- component: oh-slider-card
config:
item: RaffstoresSchlafzimmer
title: Schlafzimmer
min: 0
max: 100
step: 1
scale: true
unit: "%"
- component: oh-slider-card
config:
item: RaffstoresWohnzimmer1
title: Wohnzimmer 1
min: 0
max: 100
step: 1
scale: true
unit: "%"
- component: oh-slider-card
config:
item: RaffstoresWohnzimmer2
title: Wohnzimmer 2
min: 0
max: 100
step: 1
scale: true
unit: "%"
- component: oh-slider-card
config:
item: RaffstoresWohnzimmer3
title: Wohnzimmer 3
min: 0
max: 100
step: 1
scale: true
unit: "%"
- component: oh-slider-card
config:
item: RaffstoresWohnzimmer4
title: Wohnzimmer 4
min: 0
max: 100
step: 1
scale: true
unit: "%"
masonry: []
grid: null
canvas: null
But neither shows any widgets only the label. What’s the mistake? Thank you!