Page 1 of 1

Macro not working with Atlas extender 2.11

Posted: Mon Jun 20, 2011 10:40 am
by Carl
I'm having a hard time to make my macro work with an Atlas 1056 and extender 2.11.

I have just started to learn the extender, so I may be missing something...

Here is my macro to turn on devices:

B[blue] = CBL;Phantom1;VCR;Phantom1;TV;Phantom1

Phantom key 1 is associated with a Discrete On command.

Nothing happen when I press the blue key on my remote.

Posted: Mon Jun 20, 2011 11:20 am
by Carl
Ok I got it working.I forgot to activate the extender.
I also modified my macro for this:

B[blue] = X_CBL;Phantom1;X_VCR;Phantom1;X_TV;Phantom1


It's much faster now.

Is my macro ok?
What is the X for exactly?

Posted: Mon Jun 20, 2011 1:55 pm
by pH7_jp1
CBL will simulate pressing the CBL key. If your original macro were on the CBL button, since it starts out with CBL the result would be an infinite loop continually calling the CBL button.

X_CBL just selects the CBL as the current device (and sends no commands). That is how the remote knows to send the phantom1 for first the CBL and then phantom1 for the VCR and then phantom1 for the TV in your corrected macro.