ControlThink Forums

Share ideas. Get support. Meet new friends.
Welcome to ControlThink Forums Sign in | Join | Help
in Search

Hawking Motion Detector and Door/Window Sensor - supported?

Last post 05-10-2008 1:34 PM by 325xi. 7 replies.
Page 1 of 1 (8 items)
Sort Posts: Previous Next
  • 05-04-2008 3:34 PM

    • 325xi
    • Top 50 Contributor
    • Joined on 05-01-2008
    • Canada
    • Posts 21

    Hawking Motion Detector and Door/Window Sensor - supported?

    Chris,

    Could you advise whether Hawking [HRMD1] Wireless Motion Detector and Hawking [HRDS1] Wireless Door/Window Sensor are supported?

     

     

    Thanks! 

  • 05-04-2008 4:04 PM In reply to

    • garylm
    • Top 10 Contributor
    • Joined on 01-15-2007
    • West Valley City, UT
    • Posts 200

    Re: Hawking Motion Detector and Door/Window Sensor - supported?

    I was able to add the HRDS1 to my network, using ThinkEssentials, but it is not displayed as a device icon on the floor plan.

    ThinkEssentials does not currently provide a utility for setting up device associations.  You will need to set up the association using either a controller that supports associations, or you will need the SDK.

  • 05-05-2008 9:38 PM In reply to

    • 325xi
    • Top 50 Contributor
    • Joined on 05-01-2008
    • Canada
    • Posts 21

    Re: Hawking Motion Detector and Door/Window Sensor - supported?

     Do HA09 or HA07 from Intermatic support associations?

  • 05-06-2008 12:15 AM In reply to

    • garylm
    • Top 10 Contributor
    • Joined on 01-15-2007
    • West Valley City, UT
    • Posts 200

    Re: Hawking Motion Detector and Door/Window Sensor - supported?

    The HA09 and HA07 do not support associations.  I have been using either the Leviton RZC0P or the ControlThink PC SDK to setup associations.  I think one of the Leviton handheld remotes also supports associations.  It seems there was a discussion in this forum in which the various controllers that support associations were listed.  I'll see if I can remember where I saw that post.
  • 05-06-2008 10:16 PM In reply to

    • 325xi
    • Top 50 Contributor
    • Joined on 05-01-2008
    • Canada
    • Posts 21

    Re: Hawking Motion Detector and Door/Window Sensor - supported?

    Oh, I'm not going to get one more (4th) controller just for associations... Do you mind to explain how difficult is it to set it up using SDK? I'm Java guy, not .Net, so please be gentle. 

  • 05-06-2008 10:44 PM In reply to

    Re: Hawking Motion Detector and Door/Window Sensor - supported?

    i know you don't want another remote but the act zth100 supports associations and is pretty cheap.  also, it is the only handheld remote that i know of on the market (jasco coming soon) that can control z-wave thermostats in case you add one down the road.  ugly looking remote but gets the job done cheaply

  • 05-07-2008 2:18 PM In reply to

    • garylm
    • Top 10 Contributor
    • Joined on 01-15-2007
    • West Valley City, UT
    • Posts 200

    Re: Hawking Motion Detector and Door/Window Sensor - supported?

    325xi:

    Do you mind to explain how difficult is it to set it up using SDK? I'm Java guy, not .Net, so please be gentle. 

     

    I'm not a C# or VB programmer either.  I just hacked one of the C# examples that comes with the SDK.

    You'll find sample code that declares a controller of type ZWaveController, and then connects to that controller:

    controller = new ControlThink.ZWave.ZWaveController();

    controller.Connect(); 

    Of course, there's exception handling in there in case it can't find your ZWave dongle.

    Once you're connected, you can access an individual device by first declaring it and then getting it by its node number(node 14 in this case):

    ControlThink.ZWave.Devices.ZWaveDevice doorSensor = null;

    doorSensor = controller.Devices.GetByNodeID(Convert.ToByte(14)); 

    Now that you've got your sensor, you can clear it's association groups (group 1 here), and you can add a target device(node 2) to the sensor's association group:

    doorSensor.Groups[1].Clear();

    ControlThink.ZWave.Devices.ZWaveDevice targetDevice = null;

    targetDevice = controller.Devices.GetByNodeID(Convert.ToByte(2));

    doorSensor.Groups[1].Add(targetDevice);

     

    Note:  Adding a device association to a sensor will also transfer to that sensor's routing table a return route to the associated device.  So be sure to run the network optimization/repair routine in ThinkEssentials before adding any associations.

     

  • 05-10-2008 1:34 PM In reply to

    • 325xi
    • Top 50 Contributor
    • Joined on 05-01-2008
    • Canada
    • Posts 21

    Re: Hawking Motion Detector and Door/Window Sensor - supported?

    Easy!

     

    Thanks!

Page 1 of 1 (8 items)