Hi There,
I am Sébastien, French beginner user of HA (playing around for about a week). Having lot of fun so far learning what is an entire new space to me.
But I struggle setting up my covers on the dashboard.
I installed them via tydom2mqtt (3.5.3) /mosquito (6.5.0) on HA core 2025.4.1 OP 15.1. So far so good, all covers well recognized, position and tilt option too which allowed me to create a tile card as follow:
The card works near fine, the position and tilt can be controlled, but
The issue now, is that when I (partially) close or open a cover, the tilt option disappears. In the feature part of the card, the feature changes to “Cover tilt position Not compatible”.
A refresh of the UI doesn’t work. What works is if I restart the server. Then the tilt slider re-appears.
How to solved ? I like the tile card display too
What I tested for science… (with help of chat GPT):
-
Created a help, “input_number.tilt_bandeau_cuisine”, slider, 1 to 100
-
Then two automation (I don’t fully know what I am doing):
alias: Send Tilt from Helper to MQTT (Stable)
description: ""
triggers:
- entity_id:
- sensor.bso_bandeau_cuisine_tilt
trigger: state
actions:
- data:
topic: cover/tydom/xxxxxxxxxx/set_tilt
payload: >-
{{ states('input_number.tilt_bandeau_cuisine') | float | round(0) | int
| string }}
action: mqtt.publish
- data:
title: MQTT TILT SENT
message: >-
Sent tilt: {{ states('input_number.tilt_bandeau_cuisine') | float |
round(0) | int }}
action: persistent_notification.create
mode: single
and
alias: Send Tilt from Helper to MQTT (Final)
mode: single
trigger:
- platform: state
entity_id: input_number.tilt_bandeau_cuisine
action:
- service: mqtt.publish
data:
topic: cover/tydom/xxxxxxxxxx/set_tilt
payload: "{{ states('input_number.tilt_bandeau_cuisine') | float | round(0) | int | string }}
Then added a mushroom button:
type: custom:mushroom-number-card
entity: input_number.tilt_bandeau_cuisine
name: Inclinaison
icon: mdi:unfold-more-horizontal
display_mode: slider
grid_options:
columns: 6
rows: 1
fill_container: false
secondary_info: none
layout: horizontal
primary_info: none
What is interesting, is that the generated mushroom button via helper and automation, give me control of the tiles all the time! Even when I disappear on the tile card, I can change the tile angle with the second mushroom button and it pop up again:
In picture, https://i.ibb.co/kgyvKmcQ/Capture5.png
(the original tile button auto-refresh)
What I would like as said, is that the simple tile button works, mostly for its clear and silk display.
thank you!
Seb