INTERACT FORUM

Devices => Engen -- Home Automation with Z-Wave => Topic started by: JimH on May 26, 2016, 01:16:27 pm

Title: Aeon Labs Smart Power Strip Instructions
Post by: JimH on May 26, 2016, 01:16:27 pm
The Smart Power Strip (http://www.amazon.com/Aeon-Labs-DSC11-ZWUS-White-AL001/dp/B00H3RL6JW/ref=pd_sim_60_4?ie=UTF8&dpID=21D3IGUyAYL&dpSrc=sims&preST=_AC_UL160_SR160%2C160_) has 6 outlets.  The first two are always on.  The next four can be switched on or off collectively or individually.

I had some trouble pairing, so I held down the power switch for about 20 seconds, then tried again.  The second time it worked.

Mine is node 5, so I can turn on all four of the switched outlets with this command in the Engen terminal window:

basic_set(5,100)

Off is:

basic_set(5,0)

To turn on or off individually, I can use these commands:

basic_set((0,5,1),100)   (the first 3 numbers are network, node, and sub-node, the fourth is value)

basic_set((0,5,1),0)

Or

basic_set("5A",100)  The outlets are A, B, C, and D.

basic_set("5A",0)