SteveRF,
The "problem" you are experiencing with 2
MS triggering nearly at the same time, is
not really a problem. It is directly
related to the nature of the X10 PLC
structure. Each command issued to the PL
takes roughly 1 second to execute. If
there is other traffic on the PL it will
wait to avoid collisions before sending,
now throw a couple of dim commands on the
PL and there goes another couple of
seconds. Also, if the same motion sensor
is tripped several time before the second
one is tripped, well there is your delay.
With creative programming you can eliminate
excessive PL commands. I am running HCA
and what I do is create a flag and set it
after the first trip of the motion sensor.
The macro will look something like this.
trigger is the motion sensor.
test flag for not set
if not set
set flag
turn on light
pause 30 seconds
unset flag
if flag set, do nothing.
This will eliminate excessive PL commands
and speed some things up considerbly.
T.