Tile card glitch ? / cover tilt option / Tydom2mqtt

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 :blush:

What I tested for science… (with help of chat GPT):

  1. Created a help, “input_number.tilt_bandeau_cuisine”, slider, 1 to 100

  2. 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

The code you are sharing does not make sense when comparted to the shared image

Tile Card for an input number entity

features:
  - style: slider
    type: numeric-input
type: tile
entity: input_number.tilt_bandeau_cuisine
name: Inclinaison
icon: mdi:unfold-more-horizontal
features_position: inline
vertical: false
hide_state: true

Tile Card for a cover entity

type: tile
name: Inclinaison
icon: mdi:unfold-more-horizontal
features_position: bottom
vertical: false
hide_state: true
entity: cover.xxxx
features:
  - type: cover-position

Mushroom Card for an input number entity

type: custom:mushroom-number-card
entity: number.example
layout: horizontal
display_mode: slider
primary_info: none
secondary_info: none
icon: phu:blind-tilt-open
icon_color: green

I think it does, the code I shared is the testing mushroom button that display blue and you see in final link
Capture3

this button is connected to the two automation and helper, if I press it, it restore the tilt option in the original tile card.

The code of the original tile card is not displayed before, but you have it now:

features:
  - type: cover-position
  - type: cover-tilt-position
type: tile
name: BSO bandeau cuisine
icon: mdi:blinds
features_position: bottom
vertical: false
entity: cover.bso_bandeau_cuisine

The features you are trying to reference are based on the device type and available functions.

If you reference a input number hoping to get the tilt feature for a tile card, it’s not going to work.

You’ll have to combine cards or reference a script for your custom actions using the Tap Action functions

Show me what your ideal card looks like and I’ll give you an example to work with.

Oh thanks I was lost,

The tile card, which displayed two sliders (the top slider is for opening closing, the second one is the tilt control), looks prefect to me. I just loose tilt control randomly:

Just to be on the same page, and I apologize if its already clear to you, the helper, 2 automation and mushroom button was just a test, to get a proof of concept that I can control tilt at all time, even when it randomly disapear from the original tile button.

thanks!

Now we are getting somewhere and I apologize for not fully understanding. The helper, 2 automation and mushroom button were clouding the core issue.

are you seeing any errors in the system log related tocover.bso_bandeau_cuisine

good!
no, no errors

Hi there,
still looking for a solution,

I also opened an issue there : Cover tilt option sometimes "not compatible" · Issue #260 · tydom2mqtt/tydom2mqtt · GitHub

though I am not entirely sure where the issue originates

thanks
seb