How do i add Cover to the main page?

here non of this is for cover.

my config with brodlink

cover:
  - platform: template
    covers:
      garage_door:
        friendly_name: "Salon windows"
        position_template: "50"
        open_cover:
          service: homeassistant.turn_on
          entity_id: switch.window
        close_cover:
          service: homeassistant.turn_on
          entity_id: switch.windowdwon
        stop_cover:
          service: homeassistant.turn_off
          entity_id: switch.windowstop

tx

Just use Entities card. It adjusts to the entities you display.

yes but i dont know what i need to put there :frowning:

Entity: cover.garage_door

OMG so simple :frowning: i just re install the system after work fine 3 yaer, so all new for me now.
can i ask one more? how can i fix all my Notification?

all show like this.

image

this is how config, file name automation.yaml with.

- alias: Front door is open
  trigger:
    - platform: state
      entity_id: binary_sensor.door_window_sensor_158d000127ae25
      from: 'off'
      to: 'on'
  action:
    - service: notify.hass
      data:
        message: "Front door open"

- alias: back door is open
  trigger:
    - platform: state
      entity_id: binary_sensor.door_window_sensor_158d00010f9c1b
      from: 'off'
      to: 'on'
  action:
    - service: notify.hass
      data:
        message: "Back door open"


- alias: There is someone is Salon
  trigger:
    - platform: state
      entity_id: binary_sensor.motion_sensor_158d00013e7a62
      from: 'off'
      to: 'on'
  action:
    - service: notify.hass
      data:
        message: "There is someone is Salon"

They probably have different entity ids, than those specified in the entities card. Find them in Developer Tools -> States and update the card with correct ids.

1 Like