Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cover entity - How to show standard up, stop, down buttons #319

Open
Arman-GeDon opened this issue Oct 23, 2023 · 2 comments
Open

Cover entity - How to show standard up, stop, down buttons #319

Arman-GeDon opened this issue Oct 23, 2023 · 2 comments

Comments

@Arman-GeDon
Copy link

Arman-GeDon commented Oct 23, 2023

Using multiple-entity-row it is not possible to show standard (for entities card) up, stop, down buttons for cover entity.
Only the cover state is displayed.
Toggle: true does not work as expected- it shows a switch

@ildar170975
Copy link

The m-e-r is not supposed to show the same cover entity row as the standard Entities card. The m-e-r does show a state as expected - or an entity’s attribute if needed.
If you want to show additional controls for a cover entity - propose a Feature request with a detailed description of a desired functionality. “Detailed” means “including the current functionality of displaying states/attributes/icons in “columns”.

@dvdavide
Copy link

I use something like this:

entity: cover.bedroomd
type: custom:multiple-entity-row
name: Bedroom Door
show_state: false
secondary_info:
  attribute: current_position
  postfix: '%'
  prefix: 'Position '
entities:
  - icon: mdi:arrow-up
    tap_action:
      action: call-service
      service: cover.open_cover
      service_data:
        entity_id: cover.bedroomd
  - icon: mdi:stop
    tap_action:
      action: call-service
      service: cover.stop_cover
      service_data:
        entity_id: cover.bedroomd
  - icon: mdi:arrow-down
    tap_action:
      action: call-service
      service: cover.close_cover
      service_data:
        entity_id: cover.bedroomd

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants