Skip to content

3. Using It in HA

Once connected, HA automatically creates a cover entity + buttons.


Device card

Control Action
▲ Open To the top
▼ Close To the bottom
■ Stop Halt
Position slider Move to any % (100% = fully open, 0% = fully closed — HA standard)
Jog up/down buttons Fine adjustment

⚠️ To use the slider %, the device's Upper/Lower Limit Setup must be done. Without it, only 0/100 work. (For setup, see the EasyRoll manual's [Basic Usage].)

Online/offline status

  • If the device loses power or its connection drops, HA shows it as "Unavailable" (after about 20–30 seconds).
  • When it comes back on, it automatically returns to "Available".

Automation examples

Use it in HA automations just like any other cover.

# 예: 일몰 30분 후 거실 블라인드 닫기
automation:
  - alias: "일몰에 블라인드 닫기"
    trigger:
      - platform: sun
        event: sunset
        offset: "00:30:00"
    action:
      - service: cover.close_cover
        target:
          entity_id: cover.ezs16a4______
# 예: 아침 7시에 70%만 열기
      - service: cover.set_cover_position
        target:
          entity_id: cover.ezs16a4______
        data:
          position: 70