Jump to content

Garage Door card with HA


GaryK4

Recommended Posts

Posted

My garage doors use the IOLinc (Relay and Sensor). Has anyone implemented this with Home Assistant? I created a simple card, but the only option I see is a button. That toggles between on and off. However the IO link just want to see an ON every time. In the ISY console, I can start door movement by pressing ON and stop the motion by pressing ON. I can double click the icon in HA, but that is the wrong way to implement it.

How are others handling this?

Posted

I don't have any IoLinc's but I do have several cases in HA where the entity for the button is the entity that I want the status of displayed by the button icon.  the button press is "Call Service" to run an ISY program.  Hope that helps. 

  • Like 1
Posted

HA's ISY integration allows you to create custom devices in HA via ISY programs, so you can make a "cover" in HA that actually consists of programs in ISY that issue the command to the IOLinc and track the status of the door to display in HA.  The program's 'then' logic issues a command to open the door, the 'else' logic issues a command to close the door.

The integration page goes over it and actually has a garage door as an example:
https://www.home-assistant.io/integrations/isy994/#creating-custom-devices-using-isy-programs

Posted
I found and modified that code and it seems to work.


type: button
tap_action:
  action: toggle
entity: switch.pool_pump

Then I have a single automation that watches for any switches that I want to be momentary to turn on, and switch them off after .5sec, like this, in automation.yaml

  alias: Momentary  switch
  description: 'Turn any switch into a momentary switch'
  trigger:
  - platform: state
    entity_id: switch.pool_pump, switch.rain_delay2
    from: 'off'
    to: 'on'
    for: '00:00:00.5'
  condition: []
  action:
  - service: switch.turn_off
    data: {}
    entity_id: switch.pool_pump, switch.rain_delay2
  mode: single
Guest
This topic is now closed to further replies.

  • Recently Browsing

    • No registered users viewing this page.
  • Who's Online (See full list)

  • Forum Statistics

    • Total Topics
      37k
    • Total Posts
      371.4k
×
×
  • Create New...