Jump to content

Insteon Fast on/off in Home Assistant?


Blackbird

Recommended Posts

Posted
3 hours ago, larryllix said:

If
..... XXX is switched Fast On
Then
.... do the deed
Else
   --

This is also sent by the non-Dimmer Insteon Wall switches

I know how to use fast on/off on the isy.  I'm asking how to use it in Home Assistant.  In HA there is no option that I can see that detects when an Insteon dimmer is switched fast on/off.

Posted

I know nothing about Home Assistant, but if there is no built-in way to detect that command, could you do through an alternate way, using a ISY program that detects it, changes a variable or something, and then Home Assistant detects that?

Posted
1 hour ago, Guy Lavoie said:

I know nothing about Home Assistant, but if there is no built-in way to detect that command, could you do through an alternate way, using a ISY program that detects it, changes a variable or something, and then Home Assistant detects that?

I was wondering about that also.

Posted (edited)

You are correct that there is no direct method to detect a "fast on" in home assistant.  @Guy Lavoie's technique is the best way of informing HA of a fast on event.    EDIT: Incorrect - See @shbatm response below

Fast on events will always send a device to 100%.  If your normal On/scene operation is less than 100%, you can trigger on the 100% level as a FAST ON.

Using the "entity" trigger, the following will interpret a 100% ON as a fast on.  The 100% level is 255, so you are testing for something above 254.

image.thumb.png.6c9f2fc01f6fa5dfffc98b14929abba1.png

 

Yaml:

alias: Test Fast ON
description: ""
triggers:
  - trigger: numeric_state
    entity_id:
      - light.bsmt_fam_cans
    attribute: brightness
    above: 254
conditions: []
actions: []
mode: single
 

Edited by IndyMike
Posted (edited)

Use an event trigger to pick up specific commands (independently of the device state) 

triggers:
  - event_type: isy994_control
    event_data:
      entity_id: light.main_bathroom_recessed_left
      control: DFON
    trigger: event

Example Blueprint: https://gist.github.com/shbatm/5b48d2272fb136557ac9b77d2de1beb3

Docs: https://www.home-assistant.io/integrations/isy994/#handling-insteon-or-other-isy-control-events

Edited by shbatm
  • Like 1

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...