I recently started putting together my Domoticz system.
I started from this tutorial:
http://www.vesternet.com/resources/appl ... iFqInrtmkp
Everything works great with all the devides (currently only two devices) listed in my signature.
The branch for updates is stable and no newer version than 2.2563 is available via check for update.
It works great!!
Hardware: Raspberry Pi 2 Modell B
OS: Domoticz image
Domoticz branch: Stable
Version number / build hash: 2.2563
OpenZWave Version: 1.3-293-ga4ea66b-dirty
Bug/problem or a question: Problem
Occurs: When including Popp Indoor Switches
Problem:
Today I bought two POPP 009006 Z-Wave Wall Plug Switch Schuko (EU) (IP20)[http://www.popp.eu/products/actuators/wall-plug-switch/] and one POPP 009105 Wall Plug Switch Schuko for Outdoor Use (EU) (IP44)[http://www.popp.eu/products/actuators/w ... h-outdoor/].
I started the inclusion process with the outdoor switch. Works great and is recognozed as "Popp Unknown: type=0003, id=0001" which makes sense, since acc. to manufacturer_specific.xml this device is not listed. It has certain config options which are therefore not directly available to my knwoledge but for now I'm happy with ON/OFF switch binary behavior.
The problem arises when I add one of the indoor switches. They included fine, a node id is assigned and I see an accordingly labeled devices. When I switch that device, unfortunately I don't get any reaction. The same is true for the other indoor switch.
I looked into the OZW_Log.txt and found the following entry:
"Node010, ERROR: Dropping command, expected response not received after 1 attempt(s)", which is the affected node.
In the Domoticz log, the entries show a time-out:
"OpenZWave: Received timeout notification from HomeID: 3952219047, NodeID: 10 (0x0a)"
Steps already tried::
I tried changing the manufacturer_specific.xml by changing the Popp section to the following:
Code: Select all
<Manufacturer id="0154" name="Popp">
<Product type="1100" id="0001" name="123601 Plug-in Switch" config="popp/123601.xml" />
<Product type="1100" id="0002" name="123580 Plug-in Dimmer" config="popp/123580.xml" />
<Product type="0001" id="0001" name="123658 Plug-in Switch plus Power Meter" config="popp/123658.xml" />
<!-- Added by ngblume -->
<Product type="0003" id="0001" name="009006/009105 Plug-in Switch" />
<!-- END Added -->
</Manufacturer>
I also tried copying and modifying the popp/123601.xml to popp/009006.xml with the following content and including this file via "<Product type="0003" id="0001" name="009006/009105 Plug-in Switch" config="popp/009006.xml"/>". Something wasn't quite right, since these options never showed up for the devices, even after reinclusion.
Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<Product xmlns='http://code.google.com/p/open-zwave/'>
<!-- Popp: 009006 Plug-in Switch -->
<!-- Configuration -->
<CommandClass id="112">
<Value type="list" genre="config" instance="1" index="1" label="Led mode" size="1">
<Help>Set LED indication mode</Help>
<Item label="Show switch state (Default)" value="1" />
<Item label="Disabled" value="0" />
<Item label="Operated by Indicator Command Class" value="2" />
</Value>
<Value type="short" genre="config" instance="1" index="2" label="Automatically switch off after" size="2" min="1" max="65535" value="0">
<Help>If not zero, automatically switch off after a user defined time. Unit: Sec, Min: 0, Max: 65535, Default: 0</Help>
</Value>
<Value type="list" genre="config" instance="1" index="3" label="What to do on RF off command" size="1">
<Help>Defines how to interpret RF Off command. Can be used in conjunction with Auto Off function: Ignore - to switch on the light by motion det$
<Item label="Switch off (Default)" value="0" />
<Item label="Ignore" value="1" />
<Item label="Switch on" value="2" />
<Item label="Switch on if load is off else switch off" value="3" />
</Value>
<Value type="list" genre="config" instance="1" index="5" label="Restore switch state after power cycle" size="1">
<Help>Defines if the switch should restore switch state to the last state prior to device power off (power cycle).</Help>
<Item label="Yes (Default)" value="1" />
<Item label="No, turn off" value="0" />
</Value>
<Value type="short" ganre="config" instance="1" index="20" label="Energy consumption" size="2" min="1" max="3500" value="0">
<Help>If not zero, specified the consumption of the load in Watts for the calculation of power consumption. Unit: Watts, Min: 0, Max: 3500, Def$
</Value>
<Value type="list" genre="config" instance="1" index=21" label="Color for OFF state" size="1">
<Help>What color is shown, when devide is OFF</Help>
<Item label="Off (Default)" value="0" />
<Item label="Red" value="1" />
<Item label="Green" value="2" />
<Item label="Blue" value="3" />
<Item label="Yelow" value="4" />
</Value>
<Value type="list" genre="config" instance="1" index=22" label="Color for ON state" size="1">
<Help>What color is shown, when devide is ON</Help>
<Item label="Blue (Default)" value="3" />
<Item label="Off (Default)" value="0" />
<Item label="Red" value="1" />
<Item label="Green" value="2" />
<Item label="Yelow" value="4" />
</Value>
</CommandClass>
<!-- Association Groups -->
<CommandClass id="133">
<Associations num_groups="1">
<Group index="1" max_associations="1" label="Group 1" auto="true"/>
</Associations>
</CommandClass>
</Product>
After several tries, the outdoor switch works again now, but the indoor switches still don't work.
But, I have run out of ideas to test / try.
Does anyone have experience with these Popp Switches?
They look identical to the "Popp / Duwi ZW ZS 3500 Plugin Switch", which I have also one of, which works perfectly.
Any recommendation or something I could try is highly appreciated!
Thank you!
EDIT: Apparently, I posted to the wrong forum. Would one of the admins please move this to the Z-Wave subforum? Thank you!
Best regards
Niels