Two commands at the same time will probably
work.
The exact situation is as follows: 3 motion
sensors for the front yard and each will
trigger a macro that in turn will send 4 ON
commands (in part because I implemented
a "macro in a macro" method by using a fake
device).
Now if you walk across those 3 motion
sensors each typically sends out 2 (or 3)
times the ON command and you should end up
with 3x2x4 = 24 or more commands to be
sent.
In my experience some of those commands end
up being randomly dropped and that makes
for a hard to predict result of the set of
macros that end up being executed -
particularly if they are intertwined thru
flags.
The answer I'm looking for: will the
commands be dropped if they pile up or what
is the exact logic behind such I can
account for it in the macro?
The exact case:
- The motion sensors are O3, O5 and O7
- The O3 ON, O5 ON and O7 ON macros all
send a L3 ON
- The L3 ON sets a L4 ON then sets a flag
and sets another L4 ON (the flag ensures
the 2nd L4 ON goes thru an “else”
condition).
Now if you walk across O3, O5 and O7 you
end up with O3 ON, O5 ON, O7 ON, O3 ON, O5
ON, O7 ON etc since each sends twice then
followed by a couple of L3 ON but it never
gets to L4 ON (based on the log).