Untitled

 avatar
unknown
yaml
a year ago
810 B
17
Indexable
- type: conditional
  conditions:
    - entity: vacuum.hooverine
      state: paused
  card:
    type: custom:button-card
    entity: vacuum.hooverine
    template: button_trigger
    tap_action:
      action: call-service
      service: vacuum.start
      target:
        entity_id: vacuum.hooverine
    variables:
      icon: mdi:play
      name: Fortsett
      background: var(--green)
- type: conditional
  conditions:
    - entity: vacuum.hooverine
      state_not: paused
  card:
    type: custom:button-card
    entity: vacuum.hooverine
    template: button_trigger
    tap_action:
      action: call-service
      service: vacuum.pause
      target:
        entity_id: vacuum.hooverine
    variables:
      icon: mdi:pause
      name: Pause
      background: var(--red)
Editor is loading...
Leave a Comment