Jump to content

How to create addressable IR commands


Zellarman

Recommended Posts

In an effort to simplify things for other people in my house, and try to save buttons on my remote, I've created addressable commands ie: Channel up = ON, Channel down = OFF, Volume up = FADE UP, and Volume down = FADE DOWN, (or close variations of those commands) for any selected device. I did this by assigning number buttons to a device ie: 1=front door, 2=rear soffit etc. etc. The numbered IR commands don't execute an insteon function, they merely run a program for a selected period of time, I chose 7 seconds, which then becomes false, see following example

If
       IR '1' is Pressed

Then
       Wait  7 seconds
       Run program 'IR address Front Door' (Else Path)

Else
  - No Actions - (To add one, press 'Action')



then the programs that actually execute the commands fade up, fade down, on or off

If
       IR 'Volume +' is Held
   And IR 'Volume +' is not Released

Then
       Set 'Front Door' Fade Up

Else
       Set 'Front Door' Fade Stop



are in conditional folders

Folder Conditions for 'IR Front Door'
Add conditions to limit when programs in this folder are allowed to run.



If
       Program 'IR address Front Door' is True

Then
  Allow the programs in this folder to run.



 

I also like this for two reasons

1) because it's similiar to X-10 remote functions which I've become used to

and 2) because it saves buttons on the remote (w/o addressing 6 devices times 4 separate commands = 24 buttons, vs. addressing where 6 devices + 4 commands = only 10 buttons

Link to comment

Archived

This topic is now archived and is closed to further replies.


×
×
  • Create New...