I just got the Smart Macros and go to add an 'IF' module status condition the only modules it finds are on a single house code. I use several housecodes and can't get the module I want to 'IF' check to show up in the 'Module Status' box under 'Conditions' ?
How does the Smart Macro's recognize all of the housecodes ?
I think the limitation is that as a stand-alone device, the CM15A can
remember the state of modules on only the (single) monitored housecode (although it can receive signals for all housecodes).
But you can use flags to accomplish what you want. E.g., suppose you have modules A1 and B1. Create the following macros:
Macro A1 On -> Set Flag 1
Macro A1 Off -> Clear Flag 1
Macro B1 On -> Set Flag 2
Macro B1 Off -> Clear Flag 2
Then for another macro's conditions to include the states of both A1 and B1, you test Flags 1 and 2.