Insteon LED control

Posted on
Wed Apr 19, 2023 7:07 am
uniball offline
Posts: 6
Joined: Apr 05, 2022

Insteon LED control

What happen to the ability to control the LEDs on Insteon switches? I'm also not able to discover a new Insteon FanLinc device or replace an old one in the application.

Running Version:
2022.2.2

MAC OS
Ventura 13.3.1

Posted on
Wed Apr 19, 2023 8:37 am
jay (support) offline
Site Admin
User avatar
Posts: 18224
Joined: Mar 19, 2008
Location: Austin, Texas

Re: Insteon LED control

uniball wrote:
What happen to the ability to control the LEDs on Insteon switches?


I don't understand the question, can you be more specific?

uniball wrote:
I'm also not able to discover a new Insteon FanLinc device or replace an old one in the application.


Again, we need more details - what errors do you see when you try to sync the FanLinc?

[MODERATOR NOTE] - moved to the Insteon forum.

Jay (Indigo Support)
Twitter | Facebook | LinkedIn

Posted on
Wed Apr 19, 2023 4:55 pm
uniball offline
Posts: 6
Joined: Apr 05, 2022

Re: Insteon LED control

For the LED I have a scheduled job that turns off the backlighting on my Insteon switches that no longer functions.

Apr 19, 2023 at 16:49:04
Schedule Turn off LEDs
Error unable to execute action -- device interface INSTEON Commands not running
Error unable to execute action -- device interface INSTEON Commands not running
Error unable to execute action -- device interface INSTEON Commands not running

I had to replace one of my Insteon FanLinc devices and I am trying to add it to Indigo.

Just adding a new device.
Apr 19, 2023 at 16:50:50
Email+ Debug Email+ SMTP Server: SMTP poll, 0 items in queue
PowerLinc Linking - entered discovery linking mode (240 seconds)
PowerLinc Linking - copying all links from old address to new address
PowerLinc Linking - syncing PowerLinc links (address 33.E3.8A)
PowerLinc Linking - . . adding: INSTEON plc link to controller 70.94.01, flags 03, group 01, data 00 00 FF
PowerLinc Linking - . . adding: (not added -- probably already exists)
PowerLinc Linking - sync complete
PowerLinc Linking - sending engine version request to 70.94.01
PowerLinc Linking - PowerLinc links updated
PowerLinc Linking - no response from device
PowerLinc Linking - sending engine version request to 70.94.01
PowerLinc Linking - no response from device
PowerLinc Linking - sending engine version request to 70.94.01
PowerLinc Linking - no response from device
PowerLinc Linking - sending engine version request to 70.94.01
PowerLinc Linking - no response from device
PowerLinc Linking - sending engine version request to 70.94.01
PowerLinc Linking - no response from device
PowerLinc Linking - sending engine version request to 70.94.01
PowerLinc Linking - no response from device
PowerLinc Linking - sending engine version request to 70.94.01
PowerLinc Linking - no response from device
PowerLinc Linking - sending engine version request to 70.94.01
PowerLinc Linking - no response from device
PowerLinc Linking - sending engine version request to 70.94.01
PowerLinc Linking - no response from device
Error Linking - device failed to send engine version information
Error linking failed
PowerLinc Linking - entered discovery linking mode (240 seconds)
PowerLinc Linking - exited linking mode

Posted on
Wed Apr 19, 2023 5:09 pm
uniball offline
Posts: 6
Joined: Apr 05, 2022

Re: Insteon LED control

Oddly enough I tried downgrading to 2022.2.1 but the version listed still shows 2022.2.2 but the list under Insteon and interface shows all the options previously where I can control the keypad Linc back lights.

Still not able to add a new device.

Posted on
Wed Apr 19, 2023 7:42 pm
jay (support) offline
Site Admin
User avatar
Posts: 18224
Joined: Mar 19, 2008
Location: Austin, Texas

Re: Insteon LED control

Your FanLinc isn't responding to Indigo's request for information. If you are replacing a FanLinc that you think is failing, it seems relatively likely that it's not the FanLinc itself but rather some signal issue that's interfering with communication. See the signal troubleshooting page for tips on dealing with signal noise.

Jay (Indigo Support)
Twitter | Facebook | LinkedIn

Posted on
Wed Jun 21, 2023 3:59 pm
mgolden50 offline
User avatar
Posts: 260
Joined: Jan 29, 2007
Location: Chandler, AZ

Controlling Insteon device LEDs with Python script actions

I have a KeyPadLind in a guest bedroom used for changing a ceiling fan's seed. I wanted to leave the KPL's LEDs off unless a button was pressed.
When that happens I want the button LED's to light up to show the status of the selected speeds but to turn off after a timeout to keep the room dark for sleeping.

I used the following code embedded in an Action's Python script:

Code: Select all
insteonId = "com.perceptiveautomation.indigoplugin.InsteonCommands"
insteonPlugin = indigo.server.getPlugin(insteonId)
if insteonPlugin.isEnabled():
   actionProps = dict()
   actionProps["brightness"] = 5  # a value from 1-100
   actionProps["device"] = "Guest Room  keypadlinc"  # the ID of the KeypadLinc or SwitchLinc
   actionProps["brightenMethod"] = "kpl"  # the device is a KeypadLinc - use "swl" if it's a SwitchLinc
   insteonPlugin.executeAction("setLedBrightness", props=actionProps)


It failed to work. Matt told me to replace the device name string with the device ID number and sure enough it woks as expected.

So now I have two Actions one to turn the LEDs on and one to set the LED's to 0
The "turn on" one is triggered when any of the KPL's buttons are pressed and after a delay the "turn off" Action is activated.

Thanks, Matt

Posted on
Thu Jun 22, 2023 3:48 pm
matt (support) offline
Site Admin
User avatar
Posts: 21417
Joined: Jan 27, 2003
Location: Texas

Re: Insteon LED control

I'm glad you were able to get it working!

Image

Page 1 of 1

Who is online

Users browsing this forum: No registered users and 24 guests