YoiYoi
11. November 2025 um 22:33
1
Hi zusammen,
ich habe mit der Hilfe hier diese Cards für meinen Rollo erstellt. Ich habe mir jetzt 2 neue Shellys installiert und neue Karten angelegt. Allerdings hatte ich Probleme mit dem Layout und ich konnte auf meinem Android nicht alle Schaltflächen nutzen - da sie unterhalb des Layouts waren. Kurze Abhilfe habe ich damit bekommen dass ich das Layout nach unten erweitert habe. Jetzt sehen haben die Schaltflächen aber unregelmäßige Abstände und passen generell auch nicht so ins Erscheinungsbild.
Habt ihr da vielleicht Tipps wie ich das besser lösen kann? Ich hätte nach wie vor gerne nur die 3 Optionen für die jeweiligen Rolladen
Flens
11. November 2025 um 23:21
2
Evtl. eine Mushroom Cover Karte?
type: vertical-stack
cards:
- type: custom:mushroom-cover-card
entity: cover.rollo_wohnzimmer
name: Wohnzimmer Rollo
show_position_control: false
show_buttons_control: false
- type: horizontal-stack
cards:
- type: custom:mushroom-template-card
icon: mdi:arrow-down
name: ZU
tap_action:
action: call-service
service: cover.set_cover_position
data:
entity_id: cover.rollo_wohnzimmer
position: 0
- type: custom:mushroom-template-card
icon: mdi:swap-horizontal
name: HALB
tap_action:
action: call-service
service: cover.set_cover_position
data:
entity_id: cover.rollo_wohnzimmer
position: 50
- type: custom:mushroom-template-card
icon: mdi:arrow-up
name: OFFEN
tap_action:
action: call-service
service: cover.set_cover_position
data:
entity_id: cover.rollo_wohnzimmer
position: 100
Oder auch ohne die Positionsanzeige:
type: horizontal-stack
cards:
- type: custom:mushroom-template-card
icon: mdi:arrow-down
name: ZU
tap_action:
action: call-service
service: cover.set_cover_position
data:
entity_id: cover.rollo_wohnzimmer
position: 0
- type: custom:mushroom-template-card
icon: mdi:swap-horizontal
name: HALB
tap_action:
action: call-service
service: cover.set_cover_position
data:
entity_id: cover.rollo_wohnzimmer
position: 50
- type: custom:mushroom-template-card
icon: mdi:arrow-up
name: OFFEN
tap_action:
action: call-service
service: cover.set_cover_position
data:
entity_id: cover.rollo_wohnzimmer
position: 100
Oder so evtl?
type: horizontal-stack
cards:
- type: custom:mushroom-template-card
layout: vertical
icon: mdi:window-shutter
primary: ZU
icon_color: red
tap_action:
action: call-service
service: cover.set_cover_position
data:
entity_id: cover.rollo_wohnzimmer
position: 0
- type: custom:mushroom-template-card
layout: vertical
icon: mdi:window-shutter-open
primary: HALB
icon_color: orange
tap_action:
action: call-service
service: cover.set_cover_position
data:
entity_id: cover.rollo_wohnzimmer
position: 50
- type: custom:mushroom-template-card
layout: vertical
icon: mdi:window-open
primary: OFFEN
icon_color: green
tap_action:
action: call-service
service: cover.set_cover_position
data:
entity_id: cover.rollo_wohnzimmer
position: 100