| TonyNo Moderator Group
 
  
  
 Joined: December 05 2001
 Location: United States
 Online Status: Offline
 Posts: 2889
 | 
          If the unit codes "line up", create X10 RF In triggers for M On, Off, Bright and Dim for Any unit codes, then pull the unit codes out of the [TEMP3] variable, and use that in a formula action...
           | Posted: September 23 2007 at 23:16 | IP Logged |   |  
           | 
 |  
 On:
 ph_x10( "your controller", "A", [TEMP3], 0 ) + ph_x10( "your controller", "A", 102, 0 )
 
 Off:
 ph_x10( "your controller", "A", [TEMP3], 0 ) + ph_x10( "your controller", "A", 103, 0 )
 
 Bright:
 ph_x10( "your controller", "A", 105, 10)
 
 Dim:
 ph_x10( "your controller", "A", 104, 10 )
 
 Just four triggers for the entire M house code.
 
 Edited by TonyNo - September 23 2007 at 23:20
 |