Page 1 of 1

ToggleLinc Dimmer Default Level

PostPosted: Sat Dec 01, 2012 12:27 am
by zjennings
Anyone know what commands to send to set the ToggleLinc Dimmer Default Level?

I see that I can set it in the device setup, and I see that it sends a "set local default on level (via extended message) to 22." But I cannot seem to script it out.

Any help would be much appreciated.

Re: ToggleLinc Dimmer Default Level

PostPosted: Tue Dec 04, 2012 8:42 am
by matt (support)
Try something like this (with an action that is an embedded python script):

Code: Select all
brightness = 0x55   # range is probably 0x00 to 0x7F
address = "11.7B.2E"

setDefaultOnLevel = [
   0x2E, 0x00,
   0x01,
   0x06,
   brightness,
   0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
]
indigo.insteon.sendRawExtended(address, setDefaultOnLevel)

Re: ToggleLinc Dimmer Default Level

PostPosted: Sat Dec 08, 2012 11:57 am
by zjennings
Thanks, I'll give it a try.

Re: ToggleLinc Dimmer Default Level

PostPosted: Sun Dec 09, 2012 7:15 pm
by zjennings
Yippie!!!! It works!

It actually goes from 0x00 to 0xFF. So 0x80 = 50%.

Thanks Matt!!!

Re: ToggleLinc Dimmer Default Level

PostPosted: Wed Nov 30, 2016 12:49 pm
by davvi
Is there a way to make Indigo aware of the change? Executing the script successfully sets the default brightness level in the device but is not reflected in Indigo which turns the light on to whatever default level was set before the script.

Re: ToggleLinc Dimmer Default Level

PostPosted: Wed Nov 30, 2016 5:43 pm
by matt (support)
There isn't currently any way (other than the device dialog UI) to change what Indigo thinks is the default level. I'll add it to the request list though.

Re: ToggleLinc Dimmer Default Level

PostPosted: Wed Nov 30, 2016 9:10 pm
by davvi
Thank you kindly.

Re: ToggleLinc Dimmer Default Level

PostPosted: Wed Dec 06, 2017 3:48 pm
by danowitz
matt (support) wrote:
There isn't currently any way (other than the device dialog UI) to change what Indigo thinks is the default level. I'll add it to the request list though.


Any updates on how we can achieve this?

Thanks
Joel

Re: ToggleLinc Dimmer Default Level

PostPosted: Sat Dec 09, 2017 1:25 pm
by matt (support)
Hi Joel,

Have Indigo's UI reflect the correct value? Not currently. You can change the underlying default value used by the module (per instructions above), but there is no way for Indigo's UI to know about that new value. It is on the feature request list, but not high priority at this point.