Please login or register.

Login with username, password and session length
Pages: [1] 2

Author Topic: My WORKING Setup with Active Home Pro  (Read 4735 times)

Baum

  • Guest
My WORKING Setup with Active Home Pro
« on: June 01, 2005, 07:51:08 AM »

With some help from X10, I have fully
functioning system.

MY Installation
My house is a moderate 4 bedroom, 2 story
will full basement. I have 24 light and
appliance modules.

Two Important Things
a) Use a good quality USB cable. Shorter is
better. But get one certified for USB 2.
Changing the cable solved my problems with
the CM-15A becoming disconnected from
Active Home Pro.

b) Get a phase coupler-repeater. I'm using
SmartHome 4826B. It's cheap and it just
plugs into the dryer or oven outlet (make
sure you have a 220V outlet somewhere, but
you probably do).

Basically, I'm using it for lighting
control now, but it's been stable for weeks.
Logged

DWD

  • Guest
Re: My WORKING Setup with Active Home Pro
« Reply #1 on: June 01, 2005, 12:14:06 PM »

That's Great!
Logged

tcassio

  • Sr. Member
  • ****
  • Helpful Post Rating: 0
  • Posts: 131
Re: My WORKING Setup with Active Home Pro
« Reply #2 on: June 01, 2005, 04:50:27 PM »

Baum,
Are you saying that the USB cable that
comes with the unit was at fault?
T.
Logged

SteveRF

  • Hero Member
  • *****
  • Helpful Post Rating: 13
  • Posts: 410
Re: My WORKING Setup with Active Home Pro
« Reply #3 on: June 01, 2005, 09:49:08 PM »

Baum,
Glad you have a good working system.  I had a
similar problem with the electrical phases
and , like you, I purchased a phase coupler.
That did the trick.  All has been running
pretty well for several months now.  I used
the wired coupler since I had a nearby load
center in the utility room.  The only
problems I have now are slow response when
signals from 2 motion sensors are seen within
seconds of each other.  That causes a bit of
trouble for bath lights and the other is a
glitch in the status reports.  Glad to hear
about others that have been successful.
Regards,
SteveRF
Logged

tcassio

  • Sr. Member
  • ****
  • Helpful Post Rating: 0
  • Posts: 131
Re: My WORKING Setup with Active Home Pro
« Reply #4 on: June 01, 2005, 10:04:10 PM »

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.
Logged

tcassio

  • Sr. Member
  • ****
  • Helpful Post Rating: 0
  • Posts: 131
Re: My WORKING Setup with Active Home Pro
« Reply #5 on: June 01, 2005, 10:15:39 PM »

PS,
I am using 8 Motion sensors in my setup and
very rarely experience delays using this
technique.
T.
Logged

WanderingX10

  • Guest
Re: My WORKING Setup with Active Home Pro
« Reply #6 on: June 01, 2005, 10:21:23 PM »

<Post removed by moderator.>
Logged

david k

  • Sr. Member
  • ****
  • Helpful Post Rating: 0
  • Posts: 126
Re: My WORKING Setup with Active Home Pro
« Reply #7 on: June 01, 2005, 11:27:50 PM »

WanderingX10

Wander somewhere else already will you!
Don't you have something else to do?    No
posts about Junk, Lousy devices, Crap, etc.
are going to be carrying weight after BT's
identiy crisis.  You know him, right!

My system works well as long as I leave
some SM time conditionals out of the
equation.  I am confident that will be
working sometime soon and we will have
complete functional HA systen with iWitness
and SM running circles around everything
else out there for the $$$ spent.  Already
doing most of it anyway and recommend it to
anyone who doesn't want to spend $1000's of
dollars for similar functionality but
doesn't need top of line equipment.  Like
it or not, CM15A and AHP is roughly working
now and getting better.

Jealousy is a green eyed monster!
Logged

SteveRF

  • Hero Member
  • *****
  • Helpful Post Rating: 13
  • Posts: 410
Re: My WORKING Setup with Active Home Pro
« Reply #8 on: June 02, 2005, 03:27:50 PM »

TCassio,
Your solution may work for me but I am
wondering about the built-in MS delay.  My
MSensors seem to have a 6-10 second delay
before they will "see" again.  With that much
delay I would not think there would be much
PL traffic.  We are only talking about 2
MSensors tripping at about the same moment.
It apprears that the signals are simply too
close together and only one is being worked
while the other was ignored.  The ignored
sensor has to wait 6-10 seconds to "see"
again thus my poor visitor in the dark
bathroom has to manually turn on the
lights...or wait in the dark.  I am wondering
if, with your setup, one or the other bath
will still see a delay ?  I was prone to
believe that the CM15A was just not robust
enough to handle 2 RF signals 1 or 2 seconds
apart ??  I may try your idea and see if I
can simulate the conflict.  Maybe X10
programming can give a bit of priority to
incoming RF signals ??
I really like innovative solutions.... Many
Thanks !!
SteveRF    
Logged

SteveRF

  • Hero Member
  • *****
  • Helpful Post Rating: 13
  • Posts: 410
Re: My WORKING Setup with Active Home Pro
« Reply #9 on: June 02, 2005, 03:31:22 PM »

TCassio,
PS, I like your idea.
What are you using to "turn off" the lights ?
MSensor timing trigger or macro timing ?
SteveRF
Logged

tcassio

  • Sr. Member
  • ****
  • Helpful Post Rating: 0
  • Posts: 131
Re: My WORKING Setup with Active Home Pro
« Reply #10 on: June 02, 2005, 04:49:11 PM »

SteveRF,
HCA has a test condition where you can test
weather the trigger was tripped by either
an "on" command or an "off" command and
react accordingly.  I have the MS set for 2
minutres befor sending an off command after
no motion.  The pause in the macro is an
arbitrarey duration to keep the PL traffic
to a minimum after it triggered the first
time.
T.
Logged

SteveRF

  • Hero Member
  • *****
  • Helpful Post Rating: 13
  • Posts: 410
Re: My WORKING Setup with Active Home Pro
« Reply #11 on: June 02, 2005, 07:23:40 PM »

TC,
Thanks...
Sounds like a plan to test...
SteveRF
Logged

carmine pacifico

  • Hero Member
  • *****
  • Helpful Post Rating: 1
  • Posts: 194
Re: My WORKING Setup with Active Home Pro
« Reply #12 on: June 03, 2005, 10:09:26 AM »

Steve

Are you experiencing slow response ,or loss
of signal? Regardless of the make the
motion sensor will not detect collision and
if 2 signal overlap both are lost, and it
will take about 10 seconds to detect again.
Another issue is if you are using
Dim/Bright to control your bath light,
until all the Dim/Bright are send all other
command are ignored; I got tired of the
long delays and I purchased 2 wall switches
with preset dim, they cost more but no more
banging on walls at night.
Logged

tcassio

  • Sr. Member
  • ****
  • Helpful Post Rating: 0
  • Posts: 131
Re: My WORKING Setup with Active Home Pro
« Reply #13 on: June 03, 2005, 10:15:12 AM »

Carmine,
the rf comming from the MS should not get
lost because of collisions.  The CM15A
picks up the rf then puts it on the
powerline. The CM15A has collision
avoidance.  That is the reason I switched
from the V572A to the W800 transceiver.
The W800 is connected directly to the PC.
T.
Logged

carmine pacifico

  • Hero Member
  • *****
  • Helpful Post Rating: 1
  • Posts: 194
Re: My WORKING Setup with Active Home Pro
« Reply #14 on: June 03, 2005, 10:43:43 AM »

Tcassio

I was referring to 2 motion detectors
sending overlapping signals.
This will happen if first one is triggered
and light turns on, then a very short time
later a second motion is triggered, in the
mean time the first one detect light and
sends the dusk RF signal while the second
one is sending RF signal.
I had this problem occurring frequently
enough that finally I disconnected the
photocell from the motion detectors and
problem stopped.
The Cm15a ( RR501,V572AB) they all have
collision on the PLC side, but the RF side
is one way only(from motion to RF receiver)
and RF signal collisions can not be
detected.
Logged
Pages: [1] 2
 

X10.com | About X10 | X10 Security Systems | Cameras| Package Deals
© Copyright 2014-2016 X10.com All rights reserved.