mirror of
https://github.com/Fishwaldo/open-zwave.git
synced 2025-03-15 11:31:40 +00:00
This is Version 1.6
This commit is contained in:
commit
890f24b7e8
1177 changed files with 79092 additions and 32547 deletions
16
.gitignore
vendored
16
.gitignore
vendored
|
@ -10,6 +10,11 @@ libopenzwave.so
|
|||
/cpp/build/windows/vs2010/Debug/*.log
|
||||
/cpp/build/windows/vs2010/Debug/OpenZWave.tlog/*.tlog
|
||||
/cpp/build/windows/vs2010/Debug/OpenZWave.tlog/*.lastbuildstate
|
||||
/cpp/build/windows/mingw32/*.o
|
||||
/cpp/build/windows/mingw32/*.d
|
||||
/cpp/build/windows/mingw32/*.d.*
|
||||
/cpp/build/windows/mingw32/vers.c
|
||||
/cpp/lib/windows-mingw32
|
||||
*.idb
|
||||
*.pdb
|
||||
*.log
|
||||
|
@ -37,5 +42,16 @@ OZWForm.vshost.exe.manifest
|
|||
.gitignore
|
||||
/cpp/build/windows/winversion.cpp
|
||||
.distfiles
|
||||
*.dylib
|
||||
*.txt
|
||||
ozw_config
|
||||
.project
|
||||
*~
|
||||
/.cproject
|
||||
/zwscene.xml
|
||||
/ozwcache_*.xml
|
||||
.idea/
|
||||
.idea/*
|
||||
ozw_config
|
||||
|
||||
cpp/src/command_classes/\.DS_Store
|
||||
|
|
6
BSDmakefile
Normal file
6
BSDmakefile
Normal file
|
@ -0,0 +1,6 @@
|
|||
all: .DEFAULT
|
||||
|
||||
.DEFAULT:
|
||||
gmake ${.MAKEFLAGS} ${.TARGETS}
|
||||
|
||||
.PHONY: all
|
35
ChangeLog
35
ChangeLog
|
@ -1,4 +1,16 @@
|
|||
Version 1.5
|
||||
- Pull Request #xxxx - gr-multichannel branch
|
||||
* This PR supports the U-Fairy G.R. IOT Tech (http://www.gr-smarthome.com/en/) Multichannel witch Module Embedded 3 gang Switch (http://www.gr-smarthome.com/en/h-pd-46.html#_pp=0_304_3_-1) to be used in OZW and (in my case) on Home Assistant through python-openzwave
|
||||
* That buggy chinese switches incorrectly reports as 0 the COMMAND_CLASS_MULTICHANNEL/MULTIINSTANCE version and causes the V1 of the CC to be used by OZW. The module doesn't support that (after reading the spec I'm not sure if it should, though) and ignores the On/Off commands.
|
||||
* The patch includes:
|
||||
- Added the product ID to the manufacturer_specific.xml file and the specific config file (grb3.xml)
|
||||
- Added a new attribute "version" that fixes the version the CC__MULTICHANNEL/MULTIINSTANCE supports in grb3.xml
|
||||
- Modified MultiInstance::ReadXML() to read the new "version" attribute
|
||||
- Modified CommandClass::SetVersion() to out-of-line to allow overriding in descendant classes
|
||||
- Overrode MultiInstance::SetVersion() to check and prevent version downgrading or modifying a hinted version
|
||||
* This branch is forked from 1.4.3107 because is the one currently used in Home Assistant/python-openzwave. Perhaps in the future the people at HA project will unfreeze that dependency, but I was neeeding this change to be effective now.
|
||||
* Tested succesfully with python-openzwave v0.4.3 and Home Assistant 0.69.1 on a RasPI3
|
||||
|
||||
- Pull Request #743 - Updated Fibaro Devices from Navstev0 (Justin)
|
||||
- Pull Request #740 - Updated Fibaro FGMS-001 ID's from Technosf (Justin)
|
||||
- Pull Request #750 - Fix FreeBSD 10.1 and 10.2 Builds from stromnet (Justin)
|
||||
|
@ -175,6 +187,7 @@ Version 1.5
|
|||
- Add alias for FGPB101 Button
|
||||
- Add Aeotec ZW129 WallMote Duo (Nechry)
|
||||
- Add Aeotec ZW132, ZW139 and ZW140 Nano Switch (Nechry)
|
||||
- ForceInstances now limited to association with the controller node.
|
||||
- Add MCOHome Thermostat fan coil MH8-FC-EU (Nechry)
|
||||
- Add Fibaro FGDW002 Door Opening Sensor 2 (Nechry)
|
||||
- Add Qubino ZMNHTDx Smart meter Z-Wave+ config for version 1 to 3 and 4 to 6, assume new device as 4 to 6 (Nechry)
|
||||
|
@ -239,6 +252,28 @@ Version 1.5
|
|||
- Pull Request #1693 Update manufacturer_specific.xml from afimar (Nechry)
|
||||
- Add Aeotec ZWA006 Smart Boost Timer Switch (Nechry)
|
||||
|
||||
Dev Branch:
|
||||
- Rename zwcfg_*.xml to zwcache_*.xml to reflect its not a config file, but a cache. (Justin)
|
||||
- On *nix Platforms - Rename the threads to their functions, so its visible in ps/top etc (Justin)
|
||||
- Pull Request #732 - Fix CPPFLAGS being passed to secondary Makefiles from asac (Justin)
|
||||
- Pull Request #736 - Update dotNet wrapper with new Functions from bufferUnderrun (Justin)
|
||||
- Pull Request #746 - Fix HID exports on Windows from gizmocuz (Justin)
|
||||
- Issue #490 - Preliminary support for Barrier CC from Srirams (Justin)
|
||||
- Refactor the Alarm CC to properly expose the Alarm Types, Events and
|
||||
Params from Version 2 and above devices. See
|
||||
https://github.com/OpenZWave/open-zwave/wiki/Alarm-Command-Class for
|
||||
details - Addresses Issues #558, #481 #145 and #143 (Justin)
|
||||
- Pull Request #923 - Sync dot net zw manager bundle from PascalPiche (Justin)
|
||||
- Pull Request #921 - Sync DotNet ZWLogLevel Enum with the CPP enum from PascalPiche (Justin)
|
||||
- Implement DeviceID and Serial Number retrieval in ManufacturerSpecific CC (Justin)
|
||||
- Print out effective Options when starting the Driver (Justin)
|
||||
- Check the Controller Library Loaded, and dont' proceed if we don't support the Library when starting the Driver Class (Justin)
|
||||
- SetNodeOn/Off/Level are depreciated and will be removed in 1.8 (Justin)
|
||||
- dotNet Wrapper is now maintained by dotMorten https://github.com/OpenZWave/openzwave-dotnet-uwp (Justin)
|
||||
- Exceptions are now enabled by Default (Justin)
|
||||
- Depreciate the builtin Scene Methods (not related to CENTRAL_SCENE) (Justin)
|
||||
- Fix a build error on OSX - Issue #1593 (Justin)
|
||||
|
||||
Version 1.4
|
||||
- Released 10th Jan, 2016
|
||||
|
||||
|
|
9
Makefile
9
Makefile
|
@ -16,6 +16,9 @@ export top_builddir
|
|||
PREFIX ?= /usr/local
|
||||
export PREFIX
|
||||
|
||||
UNAME := $(shell uname)
|
||||
export UNAME
|
||||
|
||||
all:
|
||||
LDFLAGS="$(LDFLAGS)" CPPFLAGS="$(CPPFLAGS)" $(MAKE) -C $(top_srcdir)/cpp/build/ -$(MAKEFLAGS)
|
||||
LDFLAGS="$(LDFLAGS)" CPPFLAGS="$(CPPFLAGS)" $(MAKE) -C $(top_srcdir)/cpp/examples/MinOZW/ -$(MAKEFLAGS)
|
||||
|
@ -27,6 +30,10 @@ install:
|
|||
clean:
|
||||
$(MAKE) -C $(top_srcdir)/cpp/build/ -$(MAKEFLAGS) $(MAKECMDGOALS)
|
||||
$(MAKE) -C $(top_srcdir)/cpp/examples/MinOZW/ -$(MAKEFLAGS) $(MAKECMDGOALS)
|
||||
$(MAKE) -C $(top_srcdir)/cpp/test/ -$(MAKEFLAGS) $(MAKECMDGOALS)
|
||||
|
||||
test:
|
||||
$(MAKE) -C $(top_srcdir)/cpp/test/ -$(MAKEFLAGS) $(MAKECMDGOALS)
|
||||
|
||||
cpp/src/vers.cpp:
|
||||
LDFLAGS="$(LDFLAGS)" CPPFLAGS="$(CPPFLAGS)" $(MAKE) -C $(top_srcdir)/cpp/build/ -$(MAKEFLAGS) $(top_srcdir)/cpp/src/vers.cpp
|
||||
|
@ -43,6 +50,8 @@ xmltest: $(XMLLINT)
|
|||
@$(XMLLINT) --noout --schema $(top_srcdir)/config/device_classes.xsd $(top_srcdir)/config/device_classes.xml
|
||||
@$(XMLLINT) --noout --schema $(top_srcdir)/config/options.xsd $(top_srcdir)/config/options.xml
|
||||
@$(XMLLINT) --noout --schema $(top_srcdir)/config/manufacturer_specific.xsd $(top_srcdir)/config/manufacturer_specific.xml
|
||||
@$(XMLLINT) --noout --schema $(top_srcdir)/config/Localization.xsd $(top_srcdir)/config/Localization.xml
|
||||
@$(XMLLINT) --noout --schema $(top_srcdir)/config/NotificationCCTypes.xsd $(top_srcdir)/config/NotificationCCTypes.xml
|
||||
@$(XMLLINT) --noout --schema $(top_srcdir)/config/device_configuration.xsd $(top_srcdir)/config/*/*.xml
|
||||
-@cpp/build/testconfig.pl
|
||||
endif
|
||||
|
|
|
@ -20,6 +20,11 @@ If you think you have found a bug, please see the next section.
|
|||
|
||||
For General Questions/How Do I etc, please post a message to our [mailing list](https://groups.google.com/forum/#!forum/openzwave)
|
||||
|
||||
## Language Wrappers
|
||||
A number of members of the community have developed wrappers for OpenZWave for other languages. Those actively maintained wrappers can be found at the OpenZWave Organisation page at https://github.com/OpenZWave
|
||||
|
||||
If you have developed a wrapper for another language, and would like to publish it under the OpenZWave organisation (and gain access to things like CI, Distribution Build Servers etc) please contact Fishwaldo on our mailing list.
|
||||
|
||||
## Opening or Contributing to a Issue on Github
|
||||
Z-Wave is a reasonably complex protocol, and thus, it almost always necessary for us to review a OZW Log file to determine what’s going on. As GitHub does not support attachments on Issues, please upload a [LogFile](http://www.openzwave.com/log-analyzer) and then create a issue on [GitHub](https://github.com/OpenZWave/open-zwave/issues). Please include a link to the LogFile Scan results (check the "Public Results" button on the results page and copy the URL it links to).
|
||||
Not uploading a Log file will often mean that we are unable to provide any further help without seeing what’s going on, so please ensure you do this.
|
||||
|
|
|
@ -1,5 +1,27 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product Revision="5" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0098:0106:6401</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/2gig/ct100.png</MetaDataItem>
|
||||
<MetaDataItem id="0106" name="ZWProductPage" type="6401">https://products.z-wavealliance.org/products/795/</MetaDataItem>
|
||||
<MetaDataItem id="0106" name="FrequencyName" type="6401">Australia / New Zealand / U.S. / Canada / Mexico</MetaDataItem>
|
||||
<MetaDataItem name="Name">CT100-US Thermostat</MetaDataItem>
|
||||
<MetaDataItem name="Description">ENERGY MANAGEMENT MADE EASY.
|
||||
|
||||
The CT100 brings together everything you need to create an energy-intelligent home: remote control, seven-day programming, and seamless integration with the Go!Control panel.
|
||||
|
||||
• Ultra Slim Form Factor
|
||||
• Two Year Battery Life
|
||||
• 4 Stage Heat, 2 Cool
|
||||
• Bright Display with Touch Screen
|
||||
• Improved Z-Wave Range
|
||||
• Auto Mode
|
||||
• Improved User Experience </MetaDataItem>
|
||||
<MetaDataItem id="0106" name="Identifier" type="6401">CT100-US</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="4">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/782/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="5">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/795/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<!--
|
||||
Radio Thermostat Company of America CT100 Plus Thermostat manual available at:
|
||||
https://products.z-wavealliance.org/ProductManual/File?folder=&filename=Manuals/1798/CT100_Plus_UserGuide_20160504.pdf
|
||||
|
@ -7,9 +29,13 @@
|
|||
https://products.z-wavealliance.org/products/1798
|
||||
-->
|
||||
<!-- This thermostat's setpoint descriptions are 0 based, not 1 -->
|
||||
<CommandClass id="67" base="0" />
|
||||
<CommandClass id="67">
|
||||
<Compatibility>
|
||||
<Base>0</Base>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="1" genre="config" label="Temperature Reporting Threshold" units="F" min="0" max="4" value="2" size="1">
|
||||
<Value genre="config" index="1" label="Temperature Reporting Threshold" max="4" min="0" size="1" type="list" units="F" value="2">
|
||||
<Help>
|
||||
The Temperature Reporting Threshold Configuration Set Command sets the reporting threshold for changes in the ambient temperature as detected by the thermostat.
|
||||
</Help>
|
||||
|
@ -19,7 +45,7 @@
|
|||
<Item label="1.5F" value="3"/>
|
||||
<Item label="2.0F" value="4"/>
|
||||
</Value>
|
||||
<Value type="list" index="2" genre="config" label="HVAC Settings" read_only="true" units="" min="0" max="2147483647" value="17891585" size="4">
|
||||
<Value genre="config" index="2" label="HVAC Settings" max="2147483647" min="0" read_only="true" size="4" type="list" units="" value="17891585">
|
||||
<Help>
|
||||
Bits 0 - 7 -> HVAC Setup: Normal (0x01) or Heat Pump (0x02)
|
||||
Bits 8 - 11 -> Number of Auxiliary Stages (Heat Pump) / Number of Heat Stages (Normal)
|
||||
|
@ -27,40 +53,74 @@
|
|||
Bits 16 - 23 -> Number of Heat Pump Stages
|
||||
Bits 24 - 31 -> Number of Cool Stages
|
||||
</Help>
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 1" value="17891585"/> <!-- 0x01,0x1,0x1,0x01,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 1" value="34668801"/> <!-- 0x02,0x1,0x1,0x01,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 1" value="18940161"/> <!-- 0x01,0x2,0x1,0x01,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 1" value="35717377"/> <!-- 0x02,0x2,0x1,0x01,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 1" value="17957121"/> <!-- 0x01,0x1,0x2,0x01,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 1" value="34734337"/><!-- 0x02,0x1,0x2,0x01,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 1" value="19005697"/> <!-- 0x01,0x2,0x2,0x01,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 1" value="35782913"/><!-- 0x02,0x2,0x2,0x01,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 1" value="17891841"/> <!-- 0x01,0x1,0x1,0x02,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 1" value="34669057"/> <!-- 0x02,0x1,0x1,0x02,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 1" value="18940417"/> <!-- 0x01,0x2,0x1,0x02,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 1" value="35717633"/> <!-- 0x02,0x2,0x1,0x02,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 1" value="17957377"/> <!-- 0x01,0x1,0x2,0x02,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 1" value="34734593"/><!-- 0x02,0x1,0x2,0x02,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 1" value="19005953"/> <!-- 0x01,0x2,0x2,0x02,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 1" value="35783169"/><!-- 0x02,0x2,0x2,0x02,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 2" value="17891586"/> <!-- 0x01,0x1,0x1,0x01,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 2" value="34668802"/> <!-- 0x02,0x1,0x1,0x01,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 2" value="18940162"/> <!-- 0x01,0x2,0x1,0x01,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 2" value="35717378"/> <!-- 0x02,0x2,0x1,0x01,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 2" value="17957122"/> <!-- 0x01,0x1,0x2,0x01,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 2" value="34734338"/><!-- 0x02,0x1,0x2,0x01,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 2" value="19005698"/> <!-- 0x01,0x2,0x2,0x01,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 2" value="35782914"/><!-- 0x02,0x2,0x2,0x01,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 2" value="17891842"/> <!-- 0x01,0x1,0x1,0x02,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 2" value="34669058"/> <!-- 0x02,0x1,0x1,0x02,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 2" value="18940418"/> <!-- 0x01,0x2,0x1,0x02,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 2" value="35717634"/> <!-- 0x02,0x2,0x1,0x02,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 2" value="17957378"/> <!-- 0x01,0x1,0x2,0x02,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 2" value="34734594"/><!-- 0x02,0x1,0x2,0x02,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 2" value="19005954"/> <!-- 0x01,0x2,0x2,0x02,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 2" value="35783170"/><!-- 0x02,0x2,0x2,0x02,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 1" value="17891585"/>
|
||||
<!-- 0x01,0x1,0x1,0x01,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 1" value="34668801"/>
|
||||
<!-- 0x02,0x1,0x1,0x01,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 1" value="18940161"/>
|
||||
<!-- 0x01,0x2,0x1,0x01,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 1" value="35717377"/>
|
||||
<!-- 0x02,0x2,0x1,0x01,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 1" value="17957121"/>
|
||||
<!-- 0x01,0x1,0x2,0x01,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 1" value="34734337"/>
|
||||
<!-- 0x02,0x1,0x2,0x01,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 1" value="19005697"/>
|
||||
<!-- 0x01,0x2,0x2,0x01,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 1" value="35782913"/>
|
||||
<!-- 0x02,0x2,0x2,0x01,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 1" value="17891841"/>
|
||||
<!-- 0x01,0x1,0x1,0x02,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 1" value="34669057"/>
|
||||
<!-- 0x02,0x1,0x1,0x02,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 1" value="18940417"/>
|
||||
<!-- 0x01,0x2,0x1,0x02,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 1" value="35717633"/>
|
||||
<!-- 0x02,0x2,0x1,0x02,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 1" value="17957377"/>
|
||||
<!-- 0x01,0x1,0x2,0x02,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 1" value="34734593"/>
|
||||
<!-- 0x02,0x1,0x2,0x02,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 1" value="19005953"/>
|
||||
<!-- 0x01,0x2,0x2,0x02,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 1" value="35783169"/>
|
||||
<!-- 0x02,0x2,0x2,0x02,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 2" value="17891586"/>
|
||||
<!-- 0x01,0x1,0x1,0x01,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 2" value="34668802"/>
|
||||
<!-- 0x02,0x1,0x1,0x01,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 2" value="18940162"/>
|
||||
<!-- 0x01,0x2,0x1,0x01,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 2" value="35717378"/>
|
||||
<!-- 0x02,0x2,0x1,0x01,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 2" value="17957122"/>
|
||||
<!-- 0x01,0x1,0x2,0x01,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 2" value="34734338"/>
|
||||
<!-- 0x02,0x1,0x2,0x01,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 2" value="19005698"/>
|
||||
<!-- 0x01,0x2,0x2,0x01,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 2" value="35782914"/>
|
||||
<!-- 0x02,0x2,0x2,0x01,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 2" value="17891842"/>
|
||||
<!-- 0x01,0x1,0x1,0x02,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 2" value="34669058"/>
|
||||
<!-- 0x02,0x1,0x1,0x02,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 2" value="18940418"/>
|
||||
<!-- 0x01,0x2,0x1,0x02,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 2" value="35717634"/>
|
||||
<!-- 0x02,0x2,0x1,0x02,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 2" value="17957378"/>
|
||||
<!-- 0x01,0x1,0x2,0x02,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 2" value="34734594"/>
|
||||
<!-- 0x02,0x1,0x2,0x02,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 2" value="19005954"/>
|
||||
<!-- 0x01,0x2,0x2,0x02,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 2" value="35783170"/>
|
||||
|
||||
|
||||
<!-- 0x02,0x2,0x2,0x02,0x02 -->
|
||||
</Value>
|
||||
<Value type="list" index="3" genre="config" label="Utility Lock" write_only="true" units="" min="0" max="255" value="0" size="1">
|
||||
<Value genre="config" index="3" label="Utility Lock" max="255" min="0" size="1" type="list" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
The Utility Lock Configuration Set command enables or disables the utility lock.
|
||||
If the utility lock is enabled, the setpoint cannot be modified directly via the thermostat screen.
|
||||
|
@ -68,7 +128,7 @@
|
|||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="4" genre="config" label="C-Wire/Battery Status" read_only="true" units="" min="1" max="2" value="1" size="1">
|
||||
<Value genre="config" index="4" label="C-Wire/Battery Status" max="2" min="1" read_only="true" size="1" type="list" units="" value="1">
|
||||
<Help>
|
||||
1 -> C-Wire
|
||||
2 -> Battery
|
||||
|
@ -76,7 +136,7 @@
|
|||
<Item label="C-Wire" value="1"/>
|
||||
<Item label="Battery" value="2"/>
|
||||
</Value>
|
||||
<Value type="list" index="5" genre="config" label="Humidity Reporting Threshold" units="% RH" min="0" max="3" value="2" size="1">
|
||||
<Value genre="config" index="5" label="Humidity Reporting Threshold" max="3" min="0" size="1" type="list" units="% RH" value="2">
|
||||
<Help>
|
||||
The Humidity Reporting Threshold Configuration Set Command sets the reporting threshold for changes in the relative humidity as detected by the thermostat.
|
||||
</Help>
|
||||
|
@ -85,7 +145,7 @@
|
|||
<Item label="5" value="2"/>
|
||||
<Item label="10" value="3"/>
|
||||
</Value>
|
||||
<Value type="list" index="6" genre="config" label="Auxiliary/Emergency heat" units="" min="0" max="1" value="0" size="1">
|
||||
<Value genre="config" index="6" label="Auxiliary/Emergency heat" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
The Auxiliary/Emergency configuration command enables or disables auxiliary / emergency heating in the thermostat.
|
||||
Auxiliary / emergency heating is only available if the thermostat is configured in heat pump mode and with at least one stage of auxiliary heating.
|
||||
|
@ -96,7 +156,7 @@
|
|||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Enabled" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="7" genre="config" label="Thermostat Swing Temperature" units="F" min="1" max="8" value="2" size="1">
|
||||
<Value genre="config" index="7" label="Thermostat Swing Temperature" max="8" min="1" size="1" type="list" units="F" value="2">
|
||||
<Help>
|
||||
Thermostat Swing Temperature configuration command sets the maximum allowed difference between ambient temperature and the set temperature.
|
||||
</Help>
|
||||
|
@ -109,7 +169,7 @@
|
|||
<Item label="3.5F" value="7"/>
|
||||
<Item label="4.0F" value="8"/>
|
||||
</Value>
|
||||
<Value type="list" index="8" genre="config" label="Thermostat Differential Temperature" units="F" min="2" max="32767" value="4" size="2">
|
||||
<Value genre="config" index="8" label="Thermostat Differential Temperature" max="32767" min="2" size="2" type="list" units="F" value="4">
|
||||
<Help>
|
||||
(Set Only) The Thermostat Differential Temperature configuration command sets the differential temperature for multi-stage HVAC systems.
|
||||
The differential temperature delta defines when the thermostat will turn on additional stages.
|
||||
|
@ -127,7 +187,7 @@
|
|||
<Item label="5.0F Cool" value="266"/>
|
||||
<Item label="6.0F Cool" value="268"/>
|
||||
</Value>
|
||||
<Value type="list" index="9" genre="config" label="Thermostat Recovery Mode" units="" min="1" max="2" value="2" size="1">
|
||||
<Value genre="config" index="9" label="Thermostat Recovery Mode" max="2" min="1" size="1" type="list" units="" value="2">
|
||||
<Help>
|
||||
The Thermostat Recovery Mode configuration command sets the HVAC recovery mode type.
|
||||
The recovery mode determines when additional HVAC stages are turned off as the ambient temperature returns to the target temperature.
|
||||
|
@ -137,7 +197,7 @@
|
|||
<Item label="Fast" value="1"/>
|
||||
<Item label="Economy" value="2"/>
|
||||
</Value>
|
||||
<Value type="raw" index="10" genre="config" label="Temperature Reporting Filter" units="F" min="0" max="32767" size="4" value="0x09 0x00 0x09 0x00">
|
||||
<Value genre="config" index="10" label="Temperature Reporting Filter" max="32767" min="0" size="4" type="raw" units="F" value="0x09 0x00 0x09 0x00">
|
||||
<Help>
|
||||
The Temperature Reporting Filter configuration command sets upper and lower bounds of the ambient temperature reporting.
|
||||
The thermostat won't report ambient temperature changes if the ambient temperature falls between these bounds.
|
||||
|
@ -154,21 +214,21 @@
|
|||
This will remove any bounds.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" index="11" genre="config" label="Simple UI Mode" units="" min="0" max="1" value="1" size="1">
|
||||
<Value genre="config" index="11" label="Simple UI Mode" max="1" min="0" size="1" type="list" units="" value="1">
|
||||
<Help>
|
||||
Simple UI Mode Enable/Disable
|
||||
</Help>
|
||||
<Item label="Enable" value="0"/>
|
||||
<Item label="Disable" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="12" genre="config" label="Multicast" units="" min="0" max="1" value="0" size="1">
|
||||
<Value genre="config" index="12" label="Multicast" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
Multicasting Enable/Disable
|
||||
</Help>
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Enabled" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="14" genre="config" label="Save Energy Mode Type" units="" min="1" max="255" value="1" size="1" read_only="true">
|
||||
<Value genre="config" index="14" label="Save Energy Mode Type" max="255" min="1" read_only="true" size="1" type="list" units="" value="1">
|
||||
<Help>
|
||||
1 -> Adjust by target delta
|
||||
2 -> Least consuming point in the running program
|
||||
|
@ -183,7 +243,7 @@
|
|||
</CommandClass>
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="2" label="Lifeline"/>
|
||||
<Group index="1" label="Lifeline" max_associations="2"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product Revision="2" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<!-- This thermostat's setpoint descriptions are 0 based, not 1 -->
|
||||
<CommandClass id="67" base="0" />
|
||||
|
||||
<CommandClass id="67">
|
||||
<Compatibility>
|
||||
<Base>0</Base>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -1,10 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product Revision="4" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<!-- This thermostat's setpoint descriptions are 0 based, not 1 -->
|
||||
<CommandClass id="67" base="0"/>
|
||||
<CommandClass id="67">
|
||||
<Compatibility>
|
||||
<Base>0</Base>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="1" genre="config" label="Temperature Reporting Threshold" units="" min="0" max="4" value="0" size="1">
|
||||
<Value genre="config" index="1" label="Temperature Reporting Threshold" max="4" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
The Temperature Reporting Threshold Configuration Set Command sets the reporting threshold for changes in the ambient temperature as detected by the thermostat.
|
||||
</Help>
|
||||
|
@ -14,7 +16,7 @@
|
|||
<Item label="1.5F" value="3"/>
|
||||
<Item label="2.0F" value="4"/>
|
||||
</Value>
|
||||
<Value type="byte" index="2" genre="config" label="HVAC Settings" read_only="true" units="" min="0" max="31" value="0" size="1">
|
||||
<Value genre="config" index="2" label="HVAC Settings" max="31" min="0" read_only="true" size="1" type="byte" units="" value="0">
|
||||
<Help>
|
||||
Read-only parameter
|
||||
0 - 7 -> HVAC Setup: Normal (0x01) or Heat Pump (0x02)
|
||||
|
@ -24,21 +26,21 @@
|
|||
24 - 31 -> Number of Cool Stages
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" index="3" genre="config" label="Utility Lock" units="" min="0" max="1" value="0" size="1">
|
||||
<Value genre="config" index="3" label="Utility Lock" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
The Utility Lock Configuration Set command enables or disables the utility lock. If the utility lock is enabled, the setpoint cannot be modified directly via the thermostat screen.
|
||||
</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="short" index="4" genre="config" label="C-Wire/Battery Status" read_only="true" units="" min="0" max="31" value="0" size="2">
|
||||
<Value genre="config" index="4" label="C-Wire/Battery Status" max="31" min="0" read_only="true" size="2" type="short" units="" value="0">
|
||||
<Help>
|
||||
Read-only parameter
|
||||
1 -> C-Wire
|
||||
2 -> Battery
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" index="5" genre="config" label="Humidity Reporting Threshold" units="" min="0" max="3" value="0" size="1">
|
||||
<Value genre="config" index="5" label="Humidity Reporting Threshold" max="3" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
The Temperature Reporting Threshold Configuration Set Command sets the reporting threshold for changes in the ambient temperature as detected by the thermostat.
|
||||
</Help>
|
||||
|
@ -47,7 +49,7 @@
|
|||
<Item label="5% RH" value="2"/>
|
||||
<Item label="10% RH" value="3"/>
|
||||
</Value>
|
||||
<Value type="list" index="6" genre="config" label="Auxiliary/Emergency heat" units="" min="0" max="1" value="0" size="1">
|
||||
<Value genre="config" index="6" label="Auxiliary/Emergency heat" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
The Auxiliary/Emergency configuration command enables or disables auxiliary / emergency heating in the thermostat. Auxiliary / emergency heating is only available if the thermostat is configured in heat pump mode and with at least one stage of auxiliary heating. This command enables auxiliary / emergency heating when the thermostat is in Auto mode. The Thermostat Set Mode command with mode Auxiliary/Emergency Heat will enable emergency heating but only if the thermostat is in
|
||||
Heat mode. This command should only be used on thermsotats that support Auxiliary/Emergency Heat thermostat mode.
|
||||
|
@ -55,7 +57,7 @@
|
|||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Enabled" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="7" genre="config" label="Thermostat Swing Temperature" units="" min="1" max="8" value="0" size="1">
|
||||
<Value genre="config" index="7" label="Thermostat Swing Temperature" max="8" min="1" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
The Auxiliary/Emergency configuration command enables or disables auxiliary/emergency heating in the thermostat. Auxiliary/emergency heating is only available if the thermostat is configured in heat pump mode and with at least one stage of auxiliary heating. This command enables auxiliary / emergency heating when the thermostat is in Auto mode. The Thermostat Set Mode command with mode Auxiliary/Emergency Heat will enable emergency heating but only if the thermostat is in Heat
|
||||
mode. This command should only be used on thermsotats that support Auxiliary/Emergency Heat thermostat mode.
|
||||
|
@ -64,7 +66,7 @@
|
|||
<Item label="0.1F" value="2"/>
|
||||
<Item label="4.0F" value="8"/>
|
||||
</Value>
|
||||
<Value type="list" index="8" genre="config" label="Thermostat Diff Temperature" units="" min="4" max="12" value="0" size="1">
|
||||
<Value genre="config" index="8" label="Thermostat Diff Temperature" max="12" min="4" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
The Thermostat Differential Temperature configuration command sets the differential temperature for multi-stage HVAC systems. The differential temperature delta defines when the thermostat will turn on additional stages. There are two differential temperatures, one for multistage cool systems and one for multistage heat systems. If the thermostat is not configured for multistage HVAC systems then these parameters have no effect.
|
||||
</Help>
|
||||
|
@ -72,7 +74,7 @@
|
|||
<Item label="4.0F" value="8"/>
|
||||
<Item label="6.0F" value="12"/>
|
||||
</Value>
|
||||
<Value type="list" index="9" genre="config" label="Thermostat Recovery Mode" units="" min="4" max="12" value="1" size="1">
|
||||
<Value genre="config" index="9" label="Thermostat Recovery Mode" max="12" min="4" size="1" type="list" units="" value="1">
|
||||
<Help>
|
||||
The Thermostat Recovery Mode configuration command sets the HVAC recovery mode type. The recovery mode determines when additional HVAC stages are turned off as the ambient temperature returns to the target temperature. If the recovery mode is set to economy, the thermostat will turn off additional HVAC stages when the ambient temperature reaches the target temperature plus/minus the differential temperature. If the recovery mode is set to fast, the thermostat will leave all
|
||||
stages on (assuming they were already on) until the ambient temperature reaches the target temperature.
|
||||
|
@ -80,7 +82,7 @@
|
|||
<Item label="Fast" value="1"/>
|
||||
<Item label="Economy" value="2"/>
|
||||
</Value>
|
||||
<Value type="short" index="10" genre="config" label="Temperature Reporting Filter" units="F" min="0" max="124" value="124" size="2">
|
||||
<Value genre="config" index="10" label="Temperature Reporting Filter" max="124" min="0" size="2" type="short" units="F" value="124">
|
||||
<Help>
|
||||
The Temperature Reporting Filter configuration command sets upper and lower bounds of the ambient temperature reporting. The thermostat will not report ambient temperature changes if the ambient temperature falls between these bounds. For example, if the upper bound is 80F and the lower bound is 60F, the thermostat will not send SENSOR_MULTI_LEVEL_REPORTS for ambient temperature values between 60F and 80F. The thermostat will only send ambient temperature changes if the
|
||||
thermostat has been added to an association group (see Command Class Association) and the temperature reporting threshold is non-zero (see Temperature Reporting Threshold).
|
||||
|
@ -89,8 +91,7 @@
|
|||
</CommandClass>
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="2" label="Reporting"/>
|
||||
<Group index="1" label="Reporting" max_associations="2"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
||||
|
|
|
@ -1,14 +1,33 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product Revision="3" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0098:0100:2002</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/2gig/ct32.png</MetaDataItem>
|
||||
<MetaDataItem id="0100" name="ZWProductPage" type="2002">https://products.z-wavealliance.org/products/1046/</MetaDataItem>
|
||||
<MetaDataItem name="WakeupDescription">When included into a Z-Wave network on battery power, this device is a FLiRS device. The Thermostat will wake up for communication when it receives a valid Z-Wave beam. </MetaDataItem>
|
||||
<MetaDataItem id="0100" name="Identifier" type="2002">CT32 RTZW-02</MetaDataItem>
|
||||
<MetaDataItem id="0100" name="FrequencyName" type="2002">U.S. / Canada / Mexico</MetaDataItem>
|
||||
<MetaDataItem name="ProductManual">https://Products.Z-WaveAlliance.org/ProductManual/File?folder=&filename=Manuals/1046/RTZW-02_module_IB_9jun14.pdf</MetaDataItem>
|
||||
<MetaDataItem name="InclusionDescription">Go to Menu screen, and press MATE icon.</MetaDataItem>
|
||||
<MetaDataItem name="Name">CT32</MetaDataItem>
|
||||
<MetaDataItem name="ExclusionDescription">Go to Menu screen, and press MATE/LINK icon.</MetaDataItem>
|
||||
<MetaDataItem name="Description">The Z-Wave enabled CT32 thermostat is a compact, easy-to-use thermostat that is packed with functionality. The CT32 has a responsive touchscreen interface, easy-to-read backlight display, and 7-day programmability. It features a system lock to avoid unintentional changes for maximum efficiency, a filter change indicator to keep your HVAC system running efficiently, wide temperature operation range, and room temperature calibration for precise control.</MetaDataItem>
|
||||
<MetaDataItem name="ResetDescription">In Main menu, put thermostat in OFF mode. Press and hold center digits.</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="3">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/1046/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<!--
|
||||
CT32 (CT32 RTZW-02)
|
||||
https://products.z-wavealliance.org/products/1046
|
||||
-->
|
||||
<!-- This thermostat's setpoint descriptions are 0 based, not 1 -->
|
||||
<CommandClass id="67" base="0"/>
|
||||
<CommandClass id="67">
|
||||
<Compatibility>
|
||||
<Base>0</Base>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="1" genre="config" label="Temperature Reporting Threshold" units="" min="0" max="4" value="0" size="1">
|
||||
<Value genre="config" index="1" label="Temperature Reporting Threshold" max="4" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
The Temperature Reporting Threshold Configuration Set Command sets the reporting threshold for changes in the ambient temperature as detected by the thermostat.
|
||||
</Help>
|
||||
|
@ -18,7 +37,7 @@
|
|||
<Item label="1.5F" value="3"/>
|
||||
<Item label="2.0F" value="4"/>
|
||||
</Value>
|
||||
<Value type="list" index="2" genre="config" label="HVAC Settings" read_only="true" units="" min="0" max="2147483647" value="17891585" size="4">
|
||||
<Value genre="config" index="2" label="HVAC Settings" max="2147483647" min="0" read_only="true" size="4" type="list" units="" value="17891585">
|
||||
<Help>
|
||||
Bits 0 - 7 -> HVAC Setup: Normal (0x01) or Heat Pump (0x02)
|
||||
Bits 8 - 11 -> Number of Auxiliary Stages (Heat Pump) / Number of Heat Stages (Normal)
|
||||
|
@ -26,40 +45,73 @@
|
|||
Bits 16 - 23 -> Number of Heat Pump Stages
|
||||
Bits 24 - 31 -> Number of Cool Stages
|
||||
</Help>
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 1" value="17891585"/> <!-- 0x01,0x1,0x1,0x01,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 1" value="34668801"/> <!-- 0x02,0x1,0x1,0x01,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 1" value="18940161"/> <!-- 0x01,0x2,0x1,0x01,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 1" value="35717377"/> <!-- 0x02,0x2,0x1,0x01,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 1" value="17957121"/> <!-- 0x01,0x1,0x2,0x01,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 1" value="34734337"/><!-- 0x02,0x1,0x2,0x01,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 1" value="19005697"/> <!-- 0x01,0x2,0x2,0x01,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 1" value="35782913"/><!-- 0x02,0x2,0x2,0x01,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 1" value="17891841"/> <!-- 0x01,0x1,0x1,0x02,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 1" value="34669057"/> <!-- 0x02,0x1,0x1,0x02,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 1" value="18940417"/> <!-- 0x01,0x2,0x1,0x02,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 1" value="35717633"/> <!-- 0x02,0x2,0x1,0x02,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 1" value="17957377"/> <!-- 0x01,0x1,0x2,0x02,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 1" value="34734593"/><!-- 0x02,0x1,0x2,0x02,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 1" value="19005953"/> <!-- 0x01,0x2,0x2,0x02,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 1" value="35783169"/><!-- 0x02,0x2,0x2,0x02,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 2" value="17891586"/> <!-- 0x01,0x1,0x1,0x01,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 2" value="34668802"/> <!-- 0x02,0x1,0x1,0x01,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 2" value="18940162"/> <!-- 0x01,0x2,0x1,0x01,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 2" value="35717378"/> <!-- 0x02,0x2,0x1,0x01,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 2" value="17957122"/> <!-- 0x01,0x1,0x2,0x01,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 2" value="34734338"/><!-- 0x02,0x1,0x2,0x01,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 2" value="19005698"/> <!-- 0x01,0x2,0x2,0x01,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 2" value="35782914"/><!-- 0x02,0x2,0x2,0x01,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 2" value="17891842"/> <!-- 0x01,0x1,0x1,0x02,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 2" value="34669058"/> <!-- 0x02,0x1,0x1,0x02,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 2" value="18940418"/> <!-- 0x01,0x2,0x1,0x02,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 2" value="35717634"/> <!-- 0x02,0x2,0x1,0x02,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 2" value="17957378"/> <!-- 0x01,0x1,0x2,0x02,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 2" value="34734594"/><!-- 0x02,0x1,0x2,0x02,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 2" value="19005954"/> <!-- 0x01,0x2,0x2,0x02,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 2" value="35783170"/><!-- 0x02,0x2,0x2,0x02,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 1" value="17891585"/>
|
||||
<!-- 0x01,0x1,0x1,0x01,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 1" value="34668801"/>
|
||||
<!-- 0x02,0x1,0x1,0x01,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 1" value="18940161"/>
|
||||
<!-- 0x01,0x2,0x1,0x01,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 1" value="35717377"/>
|
||||
<!-- 0x02,0x2,0x1,0x01,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 1" value="17957121"/>
|
||||
<!-- 0x01,0x1,0x2,0x01,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 1" value="34734337"/>
|
||||
<!-- 0x02,0x1,0x2,0x01,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 1" value="19005697"/>
|
||||
<!-- 0x01,0x2,0x2,0x01,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 1" value="35782913"/>
|
||||
<!-- 0x02,0x2,0x2,0x01,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 1" value="17891841"/>
|
||||
<!-- 0x01,0x1,0x1,0x02,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 1" value="34669057"/>
|
||||
<!-- 0x02,0x1,0x1,0x02,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 1" value="18940417"/>
|
||||
<!-- 0x01,0x2,0x1,0x02,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 1" value="35717633"/>
|
||||
<!-- 0x02,0x2,0x1,0x02,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 1" value="17957377"/>
|
||||
<!-- 0x01,0x1,0x2,0x02,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 1" value="34734593"/>
|
||||
<!-- 0x02,0x1,0x2,0x02,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 1" value="19005953"/>
|
||||
<!-- 0x01,0x2,0x2,0x02,0x01 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 1" value="35783169"/>
|
||||
<!-- 0x02,0x2,0x2,0x02,0x01 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 2" value="17891586"/>
|
||||
<!-- 0x01,0x1,0x1,0x01,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 2" value="34668802"/>
|
||||
<!-- 0x02,0x1,0x1,0x01,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 2" value="18940162"/>
|
||||
<!-- 0x01,0x2,0x1,0x01,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 1, Cool Stages: 2" value="35717378"/>
|
||||
<!-- 0x02,0x2,0x1,0x01,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 2" value="17957122"/>
|
||||
<!-- 0x01,0x1,0x2,0x01,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 2" value="34734338"/>
|
||||
<!-- 0x02,0x1,0x2,0x01,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 2" value="19005698"/>
|
||||
<!-- 0x01,0x2,0x2,0x01,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 1, Cool Stages: 2" value="35782914"/>
|
||||
<!-- 0x02,0x2,0x2,0x01,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 2" value="17891842"/>
|
||||
<!-- 0x01,0x1,0x1,0x02,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 2" value="34669058"/>
|
||||
<!-- 0x02,0x1,0x1,0x02,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 2" value="18940418"/>
|
||||
<!-- 0x01,0x2,0x1,0x02,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Gas, Heat Pump Stages: 2, Cool Stages: 2" value="35717634"/>
|
||||
<!-- 0x02,0x2,0x1,0x02,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 2" value="17957378"/>
|
||||
<!-- 0x01,0x1,0x2,0x02,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 1, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 2" value="34734594"/>
|
||||
<!-- 0x02,0x1,0x2,0x02,0x02 -->
|
||||
<Item label="HVAC: Normal, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 2" value="19005954"/>
|
||||
<!-- 0x01,0x2,0x2,0x02,0x02 -->
|
||||
<Item label="HVAC: Heat Pump, Aux Stages: 2, Aux Setup: Elec, Heat Pump Stages: 2, Cool Stages: 2" value="35783170"/>
|
||||
|
||||
<!-- 0x02,0x2,0x2,0x02,0x02 -->
|
||||
</Value>
|
||||
<Value type="list" index="3" genre="config" label="Utility Lock" units="" min="0" max="1" value="0" size="1">
|
||||
<Value genre="config" index="3" label="Utility Lock" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
The Utility Lock Configuration Set command enables or disables the utility lock.
|
||||
If the utility lock is enabled, the setpoint cannot be modified directly via the thermostat screen.
|
||||
|
@ -67,7 +119,7 @@
|
|||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="4" genre="config" label="C-Wire/Battery Status" read_only="true" units="" min="1" max="2" value="1" size="1">
|
||||
<Value genre="config" index="4" label="C-Wire/Battery Status" max="2" min="1" read_only="true" size="1" type="list" units="" value="1">
|
||||
<Help>
|
||||
1 -> C-Wire
|
||||
2 -> Battery
|
||||
|
@ -75,7 +127,7 @@
|
|||
<Item label="C-Wire" value="1"/>
|
||||
<Item label="Battery" value="2"/>
|
||||
</Value>
|
||||
<Value type="list" index="5" genre="config" label="Humidity Reporting Threshold" units="" min="0" max="3" value="0" size="1">
|
||||
<Value genre="config" index="5" label="Humidity Reporting Threshold" max="3" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
The Temperature Reporting Threshold Configuration Set Command sets the reporting threshold for changes in the ambient temperature as detected by the thermostat.
|
||||
</Help>
|
||||
|
@ -84,7 +136,7 @@
|
|||
<Item label="5% RH" value="2"/>
|
||||
<Item label="10% RH" value="3"/>
|
||||
</Value>
|
||||
<Value type="list" index="6" genre="config" label="Auxiliary/Emergency heat" units="" min="0" max="1" value="0" size="1">
|
||||
<Value genre="config" index="6" label="Auxiliary/Emergency heat" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
The Auxiliary/Emergency configuration command enables or disables auxiliary / emergency heating in the thermostat.
|
||||
Auxiliary / emergency heating is only available if the thermostat is configured in heat pump mode and with at least one stage of auxiliary heating.
|
||||
|
@ -95,7 +147,7 @@
|
|||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Enabled" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="7" genre="config" label="Thermostat Swing Temperature" units="" min="1" max="8" value="0" size="1">
|
||||
<Value genre="config" index="7" label="Thermostat Swing Temperature" max="8" min="1" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
The Auxiliary/Emergency configuration command enables or disables auxiliary/emergency heating in the thermostat. Auxiliary/emergency heating is only available if the thermostat is configured in heat pump mode and with at least one stage of auxiliary heating. This command enables auxiliary / emergency heating when the thermostat is in Auto mode. The Thermostat Set Mode command with mode Auxiliary/Emergency Heat will enable emergency heating but only if the thermostat is in Heat
|
||||
mode. This command should only be used on thermsotats that support Auxiliary/Emergency Heat thermostat mode.
|
||||
|
@ -104,7 +156,7 @@
|
|||
<Item label="0.1F" value="2"/>
|
||||
<Item label="4.0F" value="8"/>
|
||||
</Value>
|
||||
<Value type="list" index="8" genre="config" label="Thermostat Differential Temperature" units="F" min="2" max="32767" value="4" size="2">
|
||||
<Value genre="config" index="8" label="Thermostat Differential Temperature" max="32767" min="2" size="2" type="list" units="F" value="4">
|
||||
<Help>
|
||||
(Set Only) The Thermostat Differential Temperature configuration command sets the differential temperature for multi-stage HVAC systems.
|
||||
The differential temperature delta defines when the thermostat will turn on additional stages.
|
||||
|
@ -122,7 +174,7 @@
|
|||
<Item label="5.0F Cool" value="266"/>
|
||||
<Item label="6.0F Cool" value="268"/>
|
||||
</Value>
|
||||
<Value type="list" index="9" genre="config" label="Thermostat Recovery Mode" units="" min="1" max="2" value="2" size="1">
|
||||
<Value genre="config" index="9" label="Thermostat Recovery Mode" max="2" min="1" size="1" type="list" units="" value="2">
|
||||
<Help>
|
||||
The Thermostat Recovery Mode configuration command sets the HVAC recovery mode type.
|
||||
The recovery mode determines when additional HVAC stages are turned off as the ambient temperature returns to the target temperature.
|
||||
|
@ -132,13 +184,13 @@
|
|||
<Item label="Fast" value="1"/>
|
||||
<Item label="Economy" value="2"/>
|
||||
</Value>
|
||||
<Value type="short" index="10" genre="config" label="Temperature Reporting Filter" units="F" min="0" max="124" value="124" size="2">
|
||||
<Value genre="config" index="10" label="Temperature Reporting Filter" max="124" min="0" size="2" type="short" units="F" value="124">
|
||||
<Help>
|
||||
The Temperature Reporting Filter configuration command sets upper and lower bounds of the ambient temperature reporting. The thermostat will not report ambient temperature changes if the ambient temperature falls between these bounds. For example, if the upper bound is 80F and the lower bound is 60F, the thermostat will not send SENSOR_MULTI_LEVEL_REPORTS for ambient temperature values between 60F and 80F. The thermostat will only send ambient temperature changes if the
|
||||
thermostat has been added to an association group (see Command Class Association) and the temperature reporting threshold is non-zero (see Temperature Reporting Threshold).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="raw" index="10" genre="config" label="Temperature Reporting Filter" units="F" min="0" max="32767" size="4" value="0x09 0x00 0x09 0x00">
|
||||
<Value genre="config" index="10" label="Temperature Reporting Filter" max="32767" min="0" size="4" type="raw" units="F" value="0x09 0x00 0x09 0x00">
|
||||
<Help>
|
||||
The Temperature Reporting Filter configuration command sets upper and lower bounds of the ambient temperature reporting.
|
||||
The thermostat won't report ambient temperature changes if the ambient temperature falls between these bounds.
|
||||
|
@ -155,14 +207,14 @@
|
|||
This will remove any bounds.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" index="11" genre="config" label="Simple UI Mode" units="" min="0" max="1" value="1" size="1">
|
||||
<Value genre="config" index="11" label="Simple UI Mode" max="1" min="0" size="1" type="list" units="" value="1">
|
||||
<Help>
|
||||
Simple UI Mode Enable/Disable
|
||||
</Help>
|
||||
<Item label="Enable" value="0"/>
|
||||
<Item label="Disable" value="1"/>
|
||||
</Value>
|
||||
<Value type="byte" index="12" genre="config" label="Multicast" units="" min="0" max="1" value="0" size="1">
|
||||
<Value genre="config" index="12" label="Multicast" max="1" min="0" size="1" type="byte" units="" value="0">
|
||||
<Help>
|
||||
Multicasting Enable/Disable
|
||||
</Help>
|
||||
|
@ -170,8 +222,7 @@
|
|||
</CommandClass>
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="2" label="Reporting"/>
|
||||
<Group index="1" label="Reporting" max_associations="2"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product Revision="2" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<!-- 2gig CT50e thermostat with USNAP module RTZW-01 -->
|
||||
<!-- This thermostat's setpoint descriptions are 0 based, not 1 -->
|
||||
<CommandClass id="67" base="0" />
|
||||
|
||||
<CommandClass id="67">
|
||||
<Compatibility>
|
||||
<Base>0</Base>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product Revision="2" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<!-- 2gig CT80 thermostat with USNAP module RTZW-01 -->
|
||||
<!-- This thermostat's setpoint descriptions are 0 based, not 1 -->
|
||||
<CommandClass id="67" base="0" />
|
||||
|
||||
<CommandClass id="67">
|
||||
<Compatibility>
|
||||
<Base>0</Base>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--http://benext.eu/static/manual/1poleswitch.pdf-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="2">
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--http://benext.eu/static/manual/2poleswitch.pdf-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="2">
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
|
||||
|
|
|
@ -1,62 +1,63 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product Revision="3" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<!-- COMMAND_CLASS_ALARM AlarmCmd_Get not supported -->
|
||||
<CommandClass id="113" getsupported="false" />
|
||||
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
<Value type="byte" genre="config" instance="1" index="1" label="Set to Default" value="-1">
|
||||
<Help>Set all configuration values to default values (factory settings)</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="2" label="Destination routine enabled" value="255">
|
||||
<Help>Enables an internal routine that periodically checks the Z-Wave device in assocication group 2</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="3" label="Destination routine success time" value="60">
|
||||
<Help>Configure the time that the AlarmSound sends a new frame when previous frame was send successful</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="4" label="Destination routine failed time" value="240">
|
||||
<Help>Configure the time that the AlarmSound sends a few frame when previous frame was send not successful</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="5" label="Temperature calibration offset (byte 1)" value="0">
|
||||
<Help>A (signed) offset to calibrate the onboard temperature sensor</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="6" label="Temperature calibration offset (byte 2)" value="0">
|
||||
<Help>A (signed) offset to calibrate the onboard temperature sensor</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="7" label="Select index sound/light mode" value="1">
|
||||
<Help>The index of the sound mode when a switch binary/basic set frame is received</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="8" label="Power offline sound/light mode" value="6">
|
||||
<Help>The index of the sound mode when the AlarmSound will start when it is unplugged</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="9" label="Error sound/light mode" value="5">
|
||||
<Help>The index of the sound mode when the AlarmSound will play when it is unable to reach the device in association group 2</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="10" label="Sound/Light index 1" value="-1">
|
||||
<Help>Params 10 until 27 are the values to configure the sound and light thtat are played when index 1 is selected</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="28" label="Sound/Light index 2" value="-1">
|
||||
<Help>Params 28 until 45 are the values to configure the sound and light thtat are played when index 2 is selected</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="46" label="Sound/Light index 3" value="-1">
|
||||
<Help>Params 46 until 63 are the values to configure the sound and light thtat are played when index 3 is selected</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="64" label="Sound/Light index 4" value="-1">
|
||||
<Help>Params 64 until 81 are the values to configure the sound and light thtat are played when index 4 is selected</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="82" label="Sound/Light index 5" value="-1">
|
||||
<Help>Params 82 until 99 are the values to configure the sound and light thtat are played when index 5 is selected</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="100" label="Sound/Light index 6" value="-1">
|
||||
<Help>Params 100 until 117 are the values to configure the sound and light thtat are played when index 6 is selected</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="2">
|
||||
<Group index="1" max_associations="1" label="Group 1" auto="false"/>
|
||||
<Group index="2" max_associations="1" label="Group 2"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
<CommandClass id="113">
|
||||
<Compatibility>
|
||||
<GetSupported>false</GetSupported>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="1" instance="1" label="Set to Default" type="byte" value="-1">
|
||||
<Help>Set all configuration values to default values (factory settings)</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="2" instance="1" label="Destination routine enabled" type="byte" value="255">
|
||||
<Help>Enables an internal routine that periodically checks the Z-Wave device in assocication group 2</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="3" instance="1" label="Destination routine success time" type="byte" value="60">
|
||||
<Help>Configure the time that the AlarmSound sends a new frame when previous frame was send successful</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="4" instance="1" label="Destination routine failed time" type="byte" value="240">
|
||||
<Help>Configure the time that the AlarmSound sends a few frame when previous frame was send not successful</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="5" instance="1" label="Temperature calibration offset (byte 1)" type="byte" value="0">
|
||||
<Help>A (signed) offset to calibrate the onboard temperature sensor</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="6" instance="1" label="Temperature calibration offset (byte 2)" type="byte" value="0">
|
||||
<Help>A (signed) offset to calibrate the onboard temperature sensor</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="7" instance="1" label="Select index sound/light mode" type="byte" value="1">
|
||||
<Help>The index of the sound mode when a switch binary/basic set frame is received</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="8" instance="1" label="Power offline sound/light mode" type="byte" value="6">
|
||||
<Help>The index of the sound mode when the AlarmSound will start when it is unplugged</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="9" instance="1" label="Error sound/light mode" type="byte" value="5">
|
||||
<Help>The index of the sound mode when the AlarmSound will play when it is unable to reach the device in association group 2</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="10" instance="1" label="Sound/Light index 1" type="byte" value="-1">
|
||||
<Help>Params 10 until 27 are the values to configure the sound and light thtat are played when index 1 is selected</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="28" instance="1" label="Sound/Light index 2" type="byte" value="-1">
|
||||
<Help>Params 28 until 45 are the values to configure the sound and light thtat are played when index 2 is selected</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="46" instance="1" label="Sound/Light index 3" type="byte" value="-1">
|
||||
<Help>Params 46 until 63 are the values to configure the sound and light thtat are played when index 3 is selected</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="64" instance="1" label="Sound/Light index 4" type="byte" value="-1">
|
||||
<Help>Params 64 until 81 are the values to configure the sound and light thtat are played when index 4 is selected</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="82" instance="1" label="Sound/Light index 5" type="byte" value="-1">
|
||||
<Help>Params 82 until 99 are the values to configure the sound and light thtat are played when index 5 is selected</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="100" instance="1" label="Sound/Light index 6" type="byte" value="-1">
|
||||
<Help>Params 100 until 117 are the values to configure the sound and light thtat are played when index 6 is selected</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="2">
|
||||
<Group auto="false" index="1" label="Group 1" max_associations="1"/>
|
||||
<Group index="2" label="Group 2" max_associations="1"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--http://benext.eu/static/manual/builtindimmer.pdf-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="2">
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
|
||||
|
|
|
@ -1,60 +1,84 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--http://www.benext.eu/static/manual/doorsensor.pdf-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
|
||||
<Value type="byte" genre="config" instance="1" index="1" label="Set to Default" value="-1">
|
||||
<Help>Set all configuration values to default values (factory settings).</Help>
|
||||
</Value>
|
||||
|
||||
<Value type="list" genre="config" instance="1" index="2" label="External Contact" value="0" size="1">
|
||||
<Help>Configure what the external contact sends when triggered. (Default: 0)</Help>
|
||||
<Item label="Send a alarm report with type 2." value="0"/>
|
||||
<Item label="Send a Basic set frame to all nodes in association group 2." value="1"/>
|
||||
</Value>
|
||||
|
||||
<Value type="byte" genre="config" instance="1" index="3" label="Not used" value="0">
|
||||
<Help>Is not used but can still be set and requested.</Help>
|
||||
</Value>
|
||||
|
||||
<Value type="byte" genre="config" instance="1" index="4" label="Not used" value="0">
|
||||
<Help>Is not used but can still be set and requested.</Help>
|
||||
</Value>
|
||||
|
||||
<Value type="byte" genre="config" instance="1" index="5" label="The Mode" value="1">
|
||||
<Help>To configure the operating mode. (Default: 1)</Help>
|
||||
<Item label="Mode 1: Normal operating mode." value="1"/>
|
||||
<Item label="Mode 3: Z-Wave chip is always on to request e.g. version or manufacturer id." value="3"/>
|
||||
</Value>
|
||||
|
||||
<Value type="int" genre="config" instance="1" index="6" label="Temperature offset" value="0">
|
||||
<Help>A signed integer to determine the offset of the temperature. (Default: 0)</Help>
|
||||
</Value>
|
||||
|
||||
<Value type="byte" genre="config" instance="1" index="7" label="Extern Contact Debounce ON" value="0">
|
||||
<Help>Debounce time when the external contact is opened. (Default: 0)</Help>
|
||||
</Value>
|
||||
|
||||
<Value type="byte" genre="config" instance="1" index="8" label="Extern Contact Debounce OFF" value="0">
|
||||
<Help>Debounce time when the external contact is opened. (Default 0)</Help>
|
||||
</Value>
|
||||
|
||||
<Value type="byte" genre="config" instance="1" index="9" label="Wake up delay" value="0">
|
||||
<Help>A delay from the wake up time to give the external contact a chance to change his status. (Default 0, value * 100 ms, 0 - 25,5 seconds)</Help>
|
||||
</Value>
|
||||
|
||||
</CommandClass>
|
||||
|
||||
<!-- the Device Doesn't support Get for Alarm Class -->
|
||||
<CommandClass id="113" getsupported="false"/>
|
||||
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="2">
|
||||
<Group index="1" max_associations="5" label="Internal door contact" />
|
||||
<Group index="2" max_associations="5" label="External door contact" />
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
|
||||
</Product>
|
||||
<!--http://www.benext.eu/static/manual/doorsensor.pdf--><Product Revision="4" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/008A:0100:0004</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/BeNext/DoorSensor.png</MetaDataItem>
|
||||
<MetaDataItem id="0100" name="ZWProductPage" type="0004">https://products.z-wavealliance.org/products/75/</MetaDataItem>
|
||||
<MetaDataItem name="Description">A 2-in-1 product The primary function of the Door Sensor is detecting the status of a door or window. Due to it’s build in thermometer you can also measure temperature on that location. Use the Door Sensor for; - Security - Comfort -Lighting - Automation and Saving money.
|
||||
- Temperature sensor inside
|
||||
- External contact for additional sensor or doorbell-push button
|
||||
|
||||
Use The Door Sensor for securing and/or enlarging luxury and automation in your home or office. Receive notifications when unwanted activities are being triggered and keep your room temperature on level due to the build-in thermometer. Make up your own rules in the free of charge online manager so that your preferences are automated when simply opening your front door.
|
||||
The primary function of the Door Sensor is detecting the status of a door or window. In combination with our Alarm Sound you can configure rules that enable an alarm when doors or windows are opened unwanted. Broaden functionalities by making your own rules. Make it happen that when you leave your bedroom, any preferred devices and custom scenes switch on and off, depending on the time of day.
|
||||
|
||||
- Long battery operation time - Temperature sensor - Extra external contact - Good priced
|
||||
|
||||
The dimensions are 3,3 x 5,8 x 1,8cm (LxBxH). The color of the product is traffic White, RAL 9016. Electrical specs can be found on http://www.benext.eu/en/products/door-sensor/
|
||||
• Measure the open and/or closed status of doors and windows in your office or home
|
||||
• Measure temperature
|
||||
• Set up a basic security system by simply adding more sensors
|
||||
• Receive notifications on your phone and email when there is registered activity
|
||||
• Make up a variety of rules to add functionality to your home
|
||||
• Use for security and adding luxury to your office or home
|
||||
• Save on your energy bills by reducing unwanted usage of heating
|
||||
• Product dimensions: Door Sensor = 58 x 33 x 17 millimeter. Magnet = 58 x 11 x 17 millimeter (L x W x H)
|
||||
• Normal operating voltage: 2x AAA 1,5V batteries. From 2,3 to 4,0Vdc. Do not use rechargeable batteries
|
||||
• Battery lifetime: approximately 5 years by normal usage. Approximately 3~4 years by long networks and heavily usage
|
||||
• Absolute maximum temperature: -15°C to +85°C
|
||||
</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">www.benext.eu/en/products/door-sensor</MetaDataItem>
|
||||
<MetaDataItem name="ProductSupport">Info@Benext.eu</MetaDataItem>
|
||||
<MetaDataItem name="Name">Door Sensor</MetaDataItem>
|
||||
<MetaDataItem id="0100" name="FrequencyName" type="0004">CEPT (Europe)</MetaDataItem>
|
||||
<MetaDataItem id="0100" name="Identifier" type="0004">BeNeXt / Door Sensor</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="4">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/75/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="1" instance="1" label="Set to Default" type="byte" value="-1">
|
||||
<Help>Set all configuration values to default values (factory settings).</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="2" instance="1" label="External Contact" size="1" type="list" value="0">
|
||||
<Help>Configure what the external contact sends when triggered. (Default: 0)</Help>
|
||||
<Item label="Send a alarm report with type 2." value="0"/>
|
||||
<Item label="Send a Basic set frame to all nodes in association group 2." value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="3" instance="1" label="Not used" type="byte" value="0">
|
||||
<Help>Is not used but can still be set and requested.</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="4" instance="1" label="Not used" type="byte" value="0">
|
||||
<Help>Is not used but can still be set and requested.</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="5" instance="1" label="The Mode" type="byte" value="1">
|
||||
<Help>To configure the operating mode. (Default: 1)</Help>
|
||||
<Item label="Mode 1: Normal operating mode." value="1"/>
|
||||
<Item label="Mode 3: Z-Wave chip is always on to request e.g. version or manufacturer id." value="3"/>
|
||||
</Value>
|
||||
<Value genre="config" index="6" instance="1" label="Temperature offset" type="int" value="0">
|
||||
<Help>A signed integer to determine the offset of the temperature. (Default: 0)</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="7" instance="1" label="Extern Contact Debounce ON" type="byte" value="0">
|
||||
<Help>Debounce time when the external contact is opened. (Default: 0)</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="8" instance="1" label="Extern Contact Debounce OFF" type="byte" value="0">
|
||||
<Help>Debounce time when the external contact is opened. (Default 0)</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="9" instance="1" label="Wake up delay" type="byte" value="0">
|
||||
<Help>A delay from the wake up time to give the external contact a chance to change his status. (Default 0, value * 100 ms, 0 - 25,5 seconds)</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- the Device Doesn't support Get for Alarm Class -->
|
||||
<CommandClass id="113">
|
||||
<Compatibility>
|
||||
<GetSupported>false</GetSupported>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="2">
|
||||
<Group index="1" label="Internal door contact" max_associations="5"/>
|
||||
<Group index="2" label="External door contact" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--http://www.pepper1.net/zwavedb/device/269-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="2">
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
<Value type="byte" genre="config" instance="1" index="1" label="Set to Default" value="-1">
|
||||
|
|
|
@ -1,9 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--http://www.benext.eu/static/manual/heatingcontrol.pdf-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
|
||||
<CommandClass id="64" name="COMMAND_CLASS_THERMOSTAT_MODE">
|
||||
<Value type="list" genre="user" instance="1" index="0" label="Mode" units="" read_only="false" write_only="false" min="0" max="0" value="0">
|
||||
<Product Revision="4" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<CommandClass id="64">
|
||||
<Value genre="user" index="0" instance="1" label="Mode" max="0" min="0" read_only="false" type="list" units="" value="0" write_only="false">
|
||||
<Item label="Heat" value="1"/>
|
||||
<Item label="Energy Heat" value="11"/>
|
||||
</Value>
|
||||
|
@ -11,17 +9,20 @@
|
|||
<Mode index="1" label="Heat"/>
|
||||
<Mode index="11" label="Energy Heat"/>
|
||||
</SupportedModes>
|
||||
<Compatibility/>
|
||||
</CommandClass>
|
||||
|
||||
<CommandClass id="67" name="COMMAND_CLASS_THERMOSTAT_SETPOINT" version="1" request_flags="4" create_vars="true" base="0">
|
||||
<CommandClass id="67">
|
||||
<Instance index="1"/>
|
||||
<Value type="decimal" genre="user" instance="1" index="1" label="Heating" units="C" read_only="false" write_only="false" min="0" max="0" value="20"/>
|
||||
<Value type="decimal" genre="user" instance="1" index="11" label="Energy Heat" units="C" read_only="false" write_only="false" min="0" max="0" value="16"/>
|
||||
<Value genre="user" index="1" instance="1" label="Heating" max="0" min="0" read_only="false" type="decimal" units="C" value="20" write_only="false"/>
|
||||
<Value genre="user" index="11" instance="1" label="Energy Heat" max="0" min="0" read_only="false" type="decimal" units="C" value="16" write_only="false"/>
|
||||
<Compatibility>
|
||||
<Base>0</Base>
|
||||
<CreateVars>true</CreateVars>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
<Value type="byte" genre="config" instance="1" index="1" label="Reset to Default" size="1" value="0">
|
||||
<Value genre="config" index="1" instance="1" label="Reset to Default" size="1" type="byte" value="0">
|
||||
<Help>0xFF: Set all configuration values to default values (factory settings).
|
||||
CONFIGURATION_REPORT
|
||||
0x55: Configuration settings of the device are altered.
|
||||
|
@ -29,54 +30,47 @@
|
|||
Note that this value will not change to 0x55 upon modifying the wake up interval and that re-setting the value to 0xAA will always reset the wake up interval.
|
||||
</Help>
|
||||
</Value>
|
||||
|
||||
<Value type="byte" genre="config" instance="1" index="2" label="Data request interval" value="20" size="1">
|
||||
<Value genre="config" index="2" instance="1" label="Data request interval" size="1" type="byte" value="20">
|
||||
<Help>The interval that data is requested (and therefore updated) from the thermostat and boiler. Value in seconds. </Help>
|
||||
</Value>
|
||||
|
||||
<Value type="byte" genre="config" instance="1" index="3" label="T room update difference" value="1" size="1">
|
||||
<Value genre="config" index="3" instance="1" label="T room update difference" size="1" type="byte" value="1">
|
||||
<Help>The value that the room temperature must differ (compared to his previous send value) before an unsolicited room temperature report is send to the associated node. Value in 0.1C. </Help>
|
||||
</Value>
|
||||
|
||||
<Value type="byte" genre="config" instance="1" index="4" label="T setpoint update difference" value="5" size="1">
|
||||
<Value genre="config" index="4" instance="1" label="T setpoint update difference" size="1" type="byte" value="5">
|
||||
<Help>The value that the temperature setpoint must differ (compared to his previous send value) before an unsolicited temperature setpoint report is send to the associated node. Value in 0.1C .</Help>
|
||||
</Value>
|
||||
|
||||
<Value type="list" genre="config" instance="1" index="5" label="Unsolicited CRC" size="1" value="1">
|
||||
<Value genre="config" index="5" instance="1" label="Unsolicited CRC" size="1" type="list" value="1">
|
||||
<Help>TConfigure if the unsolicited reports are send with the CRC-16 encapsulation. Not that the receiving node should support this encapsulation to parse the Z-Wave frame!</Help>
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Enabled" value="255"/>
|
||||
</Value>
|
||||
|
||||
<Value type="list" genre="config" instance="1" index="6" label="Type of 'special' thermostat" size="1" value="0">
|
||||
<Value genre="config" index="6" instance="1" label="Type of 'special' thermostat" size="1" type="list" value="0">
|
||||
<Help>Type of 'special' thermostat: NOTE: when remeha Celcia 20 support is set then any other thermostat can not be set (!) NOTE2: when Remeha Celcia 20 gives 'Fout 203' send cfg value again</Help>
|
||||
<Item label="No special" value="0"/>
|
||||
<Item label="Remeha Celcia 20" value="1"/>
|
||||
<Item label="Honeywell (rounded temperatures)" value="2"/>
|
||||
<Item label="No special" value="0"/>
|
||||
<Item label="Remeha Celcia 20" value="1"/>
|
||||
<Item label="Honeywell (rounded temperatures)" value="2"/>
|
||||
</Value>
|
||||
|
||||
<Value type="list" genre="config" instance="1" index="7" label="Status auto report" size="1" value="0">
|
||||
<Value genre="config" index="7" instance="1" label="Status auto report" size="1" type="list" value="0">
|
||||
<Help>Status auto report boiler/thermostat report</Help>
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Enabled" value="255"/>
|
||||
</Value>
|
||||
|
||||
<Value type="list" genre="config" instance="1" index="9" label="Thermostat schedule" size="1" value="0">
|
||||
<Value genre="config" index="9" instance="1" label="Thermostat schedule" size="1" type="list" value="0">
|
||||
<Help>Enable/Disable thermostat schedule inside the heating controller.</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="255"/>
|
||||
</Value>
|
||||
|
||||
</CommandClass>
|
||||
|
||||
<!-- COMMAND_CLASS_FIRMWARE_UPDATE_MD_V2 firmware update not supported -->
|
||||
<CommandClass id="122" getsupported="false" />
|
||||
|
||||
<CommandClass id="122">
|
||||
<Compatibility>
|
||||
<GetSupported>false</GetSupported>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="5" label="Lifeline" />
|
||||
<Group index="1" label="Lifeline" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
|
||||
</Product>
|
||||
|
|
|
@ -1,68 +1,91 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--http://www.pepper1.net/zwavedb/device/265-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
<Value type="byte" genre="config" instance="1" index="1" label="Set to Default" >
|
||||
<Help>Set all configuration values to default values (factory settings).</Help>
|
||||
</Value>
|
||||
<Value type="short" genre="config" instance="1" index="2" label="Mode timeout" size="2" min="1" max="32767" value="900" units="seconds">
|
||||
<Help>The time used in mode 2 to turn the sensor off. This Time will start running as soon as detection is seen.</Help>
|
||||
</Value>
|
||||
<Value type="short" genre="config" instance="1" index="3" label="Switch off time" size="2" min="1" max="32767" value="2700" units="seconds">
|
||||
<Help>The switch off time will start running as soon as mode timeout is done. Motion sensor is turned on and when movement is detected again the mode timeout (cfg param 1) will start running all over again. When switch off time is done a basic off message is sent to the associated node.</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="4" label="Sensitivity" size="1" min="0" max="127" value="80">
|
||||
<Help>Sensitivity value between 0 and 127 (values above 127 will be reported as the set value but will be handled in SW as 127).</Help>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="5" label="The mode" size="1" value="2">
|
||||
<Help>The mode that is entered after detection. If mode is 0 or higher then 3, that value will be reported after a get but will be handled in SW as mode 2.</Help>
|
||||
<Item label="no detection possible. Battery save mode" value="1"/>
|
||||
<Item label="normal operation mode: send on after detection and off after given time no detection" value="2"/>
|
||||
<Item label="Z-Wave chip is always on to request e.g. version or manufacturer id" value="3"/>
|
||||
</Value>
|
||||
<Value type="short" genre="config" instance="1" index="6" label="The temperature offset" size="2" min="0" max="32767" value="0">
|
||||
<Help>An offset for the temperature</Help>
|
||||
</Value>
|
||||
<Value type="short" genre="config" instance="1" index="7" label="Light Table 100" size="2" min="1" max="32767" value="17">
|
||||
<Help>If a LDR resistance measured lower than this value the returned light percentage is 100%. See chapter light table for more information.</Help>
|
||||
</Value>
|
||||
<Value type="short" genre="config" instance="1" index="8" label="Light Table 90" size="2" min="1" max="32767" value="38">
|
||||
<Help>If a LDR resistance measured lower than this value the returned light percentage is 90%. See chapter light table for more information.</Help>
|
||||
</Value>
|
||||
<Value type="short" genre="config" instance="1" index="9" label="Light Table 80" size="2" min="1" max="32767" value="85">
|
||||
<Help>If a LDR resistance measured lower than this value the returned light percentage is 80%. See chapter light table for more information.</Help>
|
||||
</Value>
|
||||
<Value type="short" genre="config" instance="1" index="10" label="Light Table 70" size="2" min="1" max="32767" value="186">
|
||||
<Help>If a LDR resistance measured lower than this value the returned light percentage is 70%. See chapter light table for more information.</Help>
|
||||
</Value>
|
||||
<Value type="short" genre="config" instance="1" index="11" label="Light Table 60" size="2" min="1" max="32767" value="407">
|
||||
<Help>If a LDR resistance measured lower than this value the returned light percentage is 60%. See chapter light table for more information.</Help>
|
||||
</Value>
|
||||
<Value type="short" genre="config" instance="1" index="12" label="Light Table 50" size="2" min="1" max="32767" value="891">
|
||||
<Help>If a LDR resistance measured lower than this value the returned light percentage is 50%. See chapter light table for more information.</Help>
|
||||
</Value>
|
||||
<Value type="short" genre="config" instance="1" index="13" label="Light Table 40" size="2" min="1" max="32767" value="1949">
|
||||
<Help>If a LDR resistance measured lower than this value the returned light percentage is 40%. See chapter light table for more information.</Help>
|
||||
</Value>
|
||||
<Value type="short" genre="config" instance="1" index="14" label="Light Table 30" size="2" min="1" max="32767" value="4265">
|
||||
<Help>If a LDR resistance measured lower than this value the returned light percentage is 30%. See chapter light table for more information.</Help>
|
||||
</Value>
|
||||
<Value type="short" genre="config" instance="1" index="15" label="Light Table 20" size="2" min="1" max="32767" value="9332">
|
||||
<Help>If a LDR resistance measured lower than this value the returned light percentage is 20%. See chapter light table for more information.</Help>
|
||||
</Value>
|
||||
<Value type="short" genre="config" instance="1" index="16" label=". Light Table 10" size="2" min="1" max="32767" value="20417">
|
||||
<Help>If a LDR resistance measured lower than this value the returned light percentage is 10%. See chapter light table for more information.</Help>
|
||||
</Value>
|
||||
|
||||
</CommandClass>
|
||||
<!-- Basic set as report -->
|
||||
<CommandClass id="32" setasreport="true" />
|
||||
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="5" label="LifeLine"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
<Product Revision="6" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/008A:0100:0003</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/BeNext/Molite.png</MetaDataItem>
|
||||
<MetaDataItem id="0100" name="ZWProductPage" type="0003">https://products.z-wavealliance.org/products/76/</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://www.benext.eu/en/products/molite-sensor/ </MetaDataItem>
|
||||
<MetaDataItem name="Description">With the Molite Sensor it is possible to measure movement, light and temperature. Utilize the MoLite Sensor for a variety of BeNext system features such as
|
||||
|
||||
- Security
|
||||
- Personal Comfort
|
||||
- Lighting
|
||||
- General Automation
|
||||
|
||||
Visit our website for a full description
|
||||
http://www.benext.eu/en/products/molite-sensor/
|
||||
</MetaDataItem>
|
||||
<MetaDataItem name="ProductSupport">info@benext.eu</MetaDataItem>
|
||||
<MetaDataItem name="Name">MoLiTe Sensor</MetaDataItem>
|
||||
<MetaDataItem id="0100" name="FrequencyName" type="0003">CEPT (Europe)</MetaDataItem>
|
||||
<MetaDataItem id="0100" name="Identifier" type="0003">MoLiTe</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="6">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/76/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="1" instance="1" label="Set to Default" type="byte">
|
||||
<Help>Set all configuration values to default values (factory settings).</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="2" instance="1" label="Mode timeout" max="32767" min="1" size="2" type="short" units="seconds" value="900">
|
||||
<Help>The time used in mode 2 to turn the sensor off. This Time will start running as soon as detection is seen.</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="3" instance="1" label="Switch off time" max="32767" min="1" size="2" type="short" units="seconds" value="2700">
|
||||
<Help>The switch off time will start running as soon as mode timeout is done. Motion sensor is turned on and when movement is detected again the mode timeout (cfg param 1) will start running all over again. When switch off time is done a basic off message is sent to the associated node.</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="4" instance="1" label="Sensitivity" max="127" min="0" size="1" type="byte" value="80">
|
||||
<Help>Sensitivity value between 0 and 127 (values above 127 will be reported as the set value but will be handled in SW as 127).</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="5" instance="1" label="The mode" size="1" type="list" value="2">
|
||||
<Help>The mode that is entered after detection. If mode is 0 or higher then 3, that value will be reported after a get but will be handled in SW as mode 2.</Help>
|
||||
<Item label="no detection possible. Battery save mode" value="1"/>
|
||||
<Item label="normal operation mode: send on after detection and off after given time no detection" value="2"/>
|
||||
<Item label="Z-Wave chip is always on to request e.g. version or manufacturer id" value="3"/>
|
||||
</Value>
|
||||
<Value genre="config" index="6" instance="1" label="The temperature offset" max="32767" min="0" size="2" type="short" value="0">
|
||||
<Help>An offset for the temperature</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="7" instance="1" label="Light Table 100" max="32767" min="1" size="2" type="short" value="17">
|
||||
<Help>If a LDR resistance measured lower than this value the returned light percentage is 100%. See chapter light table for more information.</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="8" instance="1" label="Light Table 90" max="32767" min="1" size="2" type="short" value="38">
|
||||
<Help>If a LDR resistance measured lower than this value the returned light percentage is 90%. See chapter light table for more information.</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="9" instance="1" label="Light Table 80" max="32767" min="1" size="2" type="short" value="85">
|
||||
<Help>If a LDR resistance measured lower than this value the returned light percentage is 80%. See chapter light table for more information.</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="10" instance="1" label="Light Table 70" max="32767" min="1" size="2" type="short" value="186">
|
||||
<Help>If a LDR resistance measured lower than this value the returned light percentage is 70%. See chapter light table for more information.</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="11" instance="1" label="Light Table 60" max="32767" min="1" size="2" type="short" value="407">
|
||||
<Help>If a LDR resistance measured lower than this value the returned light percentage is 60%. See chapter light table for more information.</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="12" instance="1" label="Light Table 50" max="32767" min="1" size="2" type="short" value="891">
|
||||
<Help>If a LDR resistance measured lower than this value the returned light percentage is 50%. See chapter light table for more information.</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="13" instance="1" label="Light Table 40" max="32767" min="1" size="2" type="short" value="1949">
|
||||
<Help>If a LDR resistance measured lower than this value the returned light percentage is 40%. See chapter light table for more information.</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="14" instance="1" label="Light Table 30" max="32767" min="1" size="2" type="short" value="4265">
|
||||
<Help>If a LDR resistance measured lower than this value the returned light percentage is 30%. See chapter light table for more information.</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="15" instance="1" label="Light Table 20" max="32767" min="1" size="2" type="short" value="9332">
|
||||
<Help>If a LDR resistance measured lower than this value the returned light percentage is 20%. See chapter light table for more information.</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="16" instance="1" label=". Light Table 10" max="32767" min="1" size="2" type="short" value="20417">
|
||||
<Help>If a LDR resistance measured lower than this value the returned light percentage is 10%. See chapter light table for more information.</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Basic set as report -->
|
||||
<CommandClass id="32">
|
||||
<Compatibility>
|
||||
<SetAsReport>true</SetAsReport>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" label="LifeLine" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -1,70 +1,70 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
<Value type="byte" genre="config" instance="1" index="1" label="Set to Default" size="1">
|
||||
<Help>Set all configuration values to default values (factory settings).</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="3" label="HW Pullup" size="1" value="0">
|
||||
<Help>For some Smart meters you will need an external pullup resistor to receive the data, one of it is the Kaifa meter. 0x00: disabled. 0x01-0xFF: enabled (default 0x00)</Help>
|
||||
</Value>
|
||||
<Value type="short" genre="config" instance="1" index="4" label="Baud rate" size="2" value="1152">
|
||||
<Help>value x 100 = baud rate</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="5" label="Data validation" size="1" value="51">
|
||||
<Help>Settings for data validation LED. Bit 7-4: Data received timeout (x 10). Bit 3-0: Framecount when data is valid (default 0x33 (0x30|0x03))</Help>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="6" label="CRC check" size="1" value="1">
|
||||
<Help></Help>
|
||||
<Item label="CRC check enabled" value="1"/>
|
||||
<Item label="CRC check disabled" value="0"/>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="72" label="Channel 1 auto Meter report usage W" size="4" value="1290">
|
||||
<Help>Conditions current usage will be automatically reported. Param 1-3: Difference in absolute value. Param 4: Difference in percentage between previous and current value. (default 0x0000050A (5Watt and 10%))</Help>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="73" label="Channel 1 auto Meter report usage kWh" size="4" value="25600">
|
||||
<Help>Conditions current usage will be automatically reported. Param 1-3: Difference in absolute value. Param 4: Difference in percentage between previous and current value. (default 0x00006400 (0.1kWh and 0%))</Help>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="74" label="Channel 1 auto Meter report delivered W" size="4" value="1290">
|
||||
<Help>Conditions current delivered will be automatically reported. Param 1-3: Difference in absolute value. Param 4: Difference in percentage between previous and current value. (default 0x0000050A (5Watt and 10%))</Help>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="75" label="Channel 1 auto Meter report delivered kWh" size="4" value="25600">
|
||||
<Help>Conditions current delivered will be automatically reported. Param 1-3: Difference in absolute value. Param 4: Difference in percentage between previous and current value. (default 0x00006400 (0.1kWh and 0%))</Help>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="76" label="Channel 2 auto Meter report usage W" size="4" value="1290">
|
||||
<Help>Conditions current usage will be automatically reported. Param 1-3: Difference in absolute value. Param 4: Difference in percentage between previous and current value. (default 0x0000050A (5Watt and 10%))</Help>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="77" label="Channel 2 auto Meter report usage kWh" size="4" value="25600">
|
||||
<Help>Conditions current usage will be automatically reported. Param 1-3: Difference in absolute value. Param 4: Difference in percentage between previous and current value. (default 0x00006400 (0.1kWh and 0%))</Help>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="78" label="Channel 2 auto Meter report delivered W" size="4" value="1290">
|
||||
<Help>Conditions current delivered will be automatically reported. Param 1-3: Difference in absolute value. Param 4: Difference in percentage between previous and current value. (default 0x0000050A (5Watt and 10%))</Help>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="79" label="Channel 2 auto Meter report delivered kWh" size="4" value="25600">
|
||||
<Help>Conditions current delivered will be automatically reported. Param 1-3: Difference in absolute value. Param 4: Difference in percentage between previous and current value. (default 0x00006400 (0.1kWh and 0%))</Help>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="81" label="Channel 3 auto Meter report usage m3" size="4" value="25600">
|
||||
<Help>Conditions total used will be automatically reported. Param 1-3: Difference in absolute value. Param 4: Difference in percentage between previous and current value. (default 0x00006400 (0.1m3 and 0%))</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<Product Revision="3" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="1" instance="1" label="Set to Default" size="1" type="byte">
|
||||
<Help>Set all configuration values to default values (factory settings).</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="3" instance="1" label="HW Pullup" size="1" type="byte" value="0">
|
||||
<Help>For some Smart meters you will need an external pullup resistor to receive the data, one of it is the Kaifa meter. 0x00: disabled. 0x01-0xFF: enabled (default 0x00)</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="4" instance="1" label="Baud rate" size="2" type="short" value="1152">
|
||||
<Help>value x 100 = baud rate</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="5" instance="1" label="Data validation" size="1" type="byte" value="51">
|
||||
<Help>Settings for data validation LED. Bit 7-4: Data received timeout (x 10). Bit 3-0: Framecount when data is valid (default 0x33 (0x30|0x03))</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="6" instance="1" label="CRC check" size="1" type="list" value="1">
|
||||
<Help></Help>
|
||||
<Item label="CRC check enabled" value="1"/>
|
||||
<Item label="CRC check disabled" value="0"/>
|
||||
</Value>
|
||||
<Value genre="config" index="72" instance="1" label="Channel 1 auto Meter report usage W" size="4" type="int" value="1290">
|
||||
<Help>Conditions current usage will be automatically reported. Param 1-3: Difference in absolute value. Param 4: Difference in percentage between previous and current value. (default 0x0000050A (5Watt and 10%))</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="73" instance="1" label="Channel 1 auto Meter report usage kWh" size="4" type="int" value="25600">
|
||||
<Help>Conditions current usage will be automatically reported. Param 1-3: Difference in absolute value. Param 4: Difference in percentage between previous and current value. (default 0x00006400 (0.1kWh and 0%))</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="74" instance="1" label="Channel 1 auto Meter report delivered W" size="4" type="int" value="1290">
|
||||
<Help>Conditions current delivered will be automatically reported. Param 1-3: Difference in absolute value. Param 4: Difference in percentage between previous and current value. (default 0x0000050A (5Watt and 10%))</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="75" instance="1" label="Channel 1 auto Meter report delivered kWh" size="4" type="int" value="25600">
|
||||
<Help>Conditions current delivered will be automatically reported. Param 1-3: Difference in absolute value. Param 4: Difference in percentage between previous and current value. (default 0x00006400 (0.1kWh and 0%))</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="76" instance="1" label="Channel 2 auto Meter report usage W" size="4" type="int" value="1290">
|
||||
<Help>Conditions current usage will be automatically reported. Param 1-3: Difference in absolute value. Param 4: Difference in percentage between previous and current value. (default 0x0000050A (5Watt and 10%))</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="77" instance="1" label="Channel 2 auto Meter report usage kWh" size="4" type="int" value="25600">
|
||||
<Help>Conditions current usage will be automatically reported. Param 1-3: Difference in absolute value. Param 4: Difference in percentage between previous and current value. (default 0x00006400 (0.1kWh and 0%))</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="78" instance="1" label="Channel 2 auto Meter report delivered W" size="4" type="int" value="1290">
|
||||
<Help>Conditions current delivered will be automatically reported. Param 1-3: Difference in absolute value. Param 4: Difference in percentage between previous and current value. (default 0x0000050A (5Watt and 10%))</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="79" instance="1" label="Channel 2 auto Meter report delivered kWh" size="4" type="int" value="25600">
|
||||
<Help>Conditions current delivered will be automatically reported. Param 1-3: Difference in absolute value. Param 4: Difference in percentage between previous and current value. (default 0x00006400 (0.1kWh and 0%))</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="81" instance="1" label="Channel 3 auto Meter report usage m3" size="4" type="int" value="25600">
|
||||
<Help>Conditions total used will be automatically reported. Param 1-3: Difference in absolute value. Param 4: Difference in percentage between previous and current value. (default 0x00006400 (0.1m3 and 0%))</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Meter v4 as report -->
|
||||
<CommandClass id="50" name="COMMAND_CLASS_METER" version="4" request_flags="3" >
|
||||
<Instance index="1" />
|
||||
<Instance index="2" />
|
||||
<Instance index="3" />
|
||||
<Instance index="4" />
|
||||
<Value type="decimal" genre="user" instance="1" index="0" label="Energy" units="kWh" read_only="true" write_only="false" />
|
||||
<Value type="decimal" genre="user" instance="1" index="8" label="Power" units="W" read_only="true" write_only="false" />
|
||||
<Value type="decimal" genre="user" instance="2" index="0" label="Energy" units="kWh" read_only="true" write_only="false"/>
|
||||
<Value type="decimal" genre="user" instance="2" index="8" label="Power" units="W" read_only="true" write_only="false" verify_changes="false" />
|
||||
<Value type="decimal" genre="user" instance="3" index="0" label="Energy" units="kWh" read_only="true" write_only="false" verify_changes="false" />
|
||||
<Value type="decimal" genre="user" instance="3" index="8" label="Power" units="W" read_only="true" write_only="false" verify_changes="false" />
|
||||
<Value type="decimal" genre="user" instance="4" index="0" label="Gas" units="cubic meters" read_only="true" write_only="false" verify_changes="false"/>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="8" label="LifeLine"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
<CommandClass id="50">
|
||||
<Instance index="1"/>
|
||||
<Instance index="2"/>
|
||||
<Instance index="3"/>
|
||||
<Instance index="4"/>
|
||||
<Value genre="user" index="0" instance="1" label="Energy" read_only="true" type="decimal" units="kWh" write_only="false"/>
|
||||
<Value genre="user" index="8" instance="1" label="Power" read_only="true" type="decimal" units="W" write_only="false"/>
|
||||
<Value genre="user" index="0" instance="2" label="Energy" read_only="true" type="decimal" units="kWh" write_only="false"/>
|
||||
<Value genre="user" index="8" instance="2" label="Power" read_only="true" type="decimal" units="W" verify_changes="false" write_only="false"/>
|
||||
<Value genre="user" index="0" instance="3" label="Energy" read_only="true" type="decimal" units="kWh" verify_changes="false" write_only="false"/>
|
||||
<Value genre="user" index="8" instance="3" label="Power" read_only="true" type="decimal" units="W" verify_changes="false" write_only="false"/>
|
||||
<Value genre="user" index="0" instance="4" label="Gas" read_only="true" type="decimal" units="cubic meters" verify_changes="false" write_only="false"/>
|
||||
<Compatibility/>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" label="LifeLine" max_associations="8"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -1,56 +1,57 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Benext Panic Button
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
<Value type="button" genre="config" instance="1" index="1" label="Set to Default" size="1" value="0">
|
||||
<Help>Set all configuration values to default values (factory settings).</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="2" label="Time to press the panic button" size="1" min="0" max="255" value="100" >
|
||||
<Help>
|
||||
<!-- Benext Panic Button-->
|
||||
<Product Revision="3" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="1" instance="1" label="Set to Default" size="1" type="button" value="0">
|
||||
<Help>Set all configuration values to default values (factory settings).</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="2" instance="1" label="Time to press the panic button" max="255" min="0" size="1" type="byte" value="100">
|
||||
<Help>
|
||||
The time that the panic pushbutton must be pressed before a (panic) message is sent out to the controller.
|
||||
0: send directly the panic message when pressed.
|
||||
1-255: send a panic message after you keep holding the button pressed for this value x 10ms.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="3" label="Min led feedback time panic" size="1" min="0" max="255" value="100" >
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="3" instance="1" label="Min led feedback time panic" max="255" min="0" size="1" type="byte" value="100">
|
||||
<Help>
|
||||
Minimum time that led feedback is shown after a panic message.
|
||||
0: led only stays on during the send time.
|
||||
1-255: led stays on during send time + this value*10ms.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="4" label="Buttons mapped" size="1" min="0" max="255" value="0">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="4" instance="1" label="Buttons mapped" max="255" min="0" size="1" type="byte" value="0">
|
||||
<Help>
|
||||
With this config parameter you can map the buttons to send different Z-Wave messages.
|
||||
0: SOS button sends an ALARM_REPORT to nodes group 1 LOCK button sends a BASIC_SET, 0xFF to nodes group 1 UNLOCK button sends a BASIC_SET, 0x00 to nodes group 1.
|
||||
1-255: button sends an BASIC_SET,0xFF to nodes group 1 LOCK button sends a BASIC_SET, 0xFF to nodes group 2 UNLOCK button sends a BASIC_SET, 0x00 to nodes group 2
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="5" label="Time to press the control buttons" size="1" min="0" max="255" value="10">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="5" instance="1" label="Time to press the control buttons" max="255" min="0" size="1" type="byte" value="10">
|
||||
<Help>
|
||||
The time that the control pushbutton(s) must be pressed before a (control) message is sent out to the controller.
|
||||
0: send directly the panic message when pressed
|
||||
1-255: send a control message after you keep holding pushbutton pressed for this value x 10ms.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="6" label="Min led feedback time control" size="1" min="0" max="255" value="50">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="6" instance="1" label="Min led feedback time control" max="255" min="0" size="1" type="byte" value="50">
|
||||
<Help>
|
||||
Minimum time that led feedback is shown after a control message is sent.
|
||||
0: led only stays on during the send time.
|
||||
1-255: led stays on during send time + this value*10ms.
|
||||
</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Basic set as report -->
|
||||
<CommandClass id="32" setasreport="true" />
|
||||
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="2">
|
||||
<Group index="1" max_associations="8" label="Group 1: see configuration parameter 4"/>
|
||||
<Group index="2" max_associations="8" label="Group 2: see configuration parameter 4" auto="true"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Basic set as report -->
|
||||
<CommandClass id="32">
|
||||
<Compatibility>
|
||||
<SetAsReport>true</SetAsReport>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="2">
|
||||
<Group index="1" label="Group 1: see configuration parameter 4" max_associations="8"/>
|
||||
<Group auto="true" index="2" label="Group 2: see configuration parameter 4" max_associations="8"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -1,44 +1,46 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Benext Panic Watch
|
||||
http://www.benext.eu/static/manual/panicwatch.pdf
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
<Value type="button" genre="config" instance="1" index="1" label="Set to Default" size="1" value="0">
|
||||
<Help>Set all configuration values to default values (factory settings).</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="2" label="Time to press the panic Watch" size="1" min="0" max="255" value="100" >
|
||||
<Help>
|
||||
<Product Revision="2" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="1" instance="1" label="Set to Default" size="1" type="button" value="0">
|
||||
<Help>Set all configuration values to default values (factory settings).</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="2" instance="1" label="Time to press the panic Watch" max="255" min="0" size="1" type="byte" value="100">
|
||||
<Help>
|
||||
The time that the panic pushbutton must be pressed before a (panic) message is sent out to the controller.
|
||||
0: send directly the panic message when pressed.
|
||||
1-255: send a panic message after you keep holding the button pressed for this value x 10ms.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="3" label="Min led feedback time panic" size="1" min="0" max="255" value="100" >
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="3" instance="1" label="Min led feedback time panic" max="255" min="0" size="1" type="byte" value="100">
|
||||
<Help>
|
||||
Minimum time that led feedback is shown after a panic message.
|
||||
0: led only stays on during the send time.
|
||||
1-255: led stays on during send time + this value*10ms.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="4" label="Buttons mapped" size="1" min="0" max="255" value="0">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="4" instance="1" label="Buttons mapped" max="255" min="0" size="1" type="byte" value="0">
|
||||
<Help>
|
||||
With this config parameter you can map the buttons to send different Z-Wave messages.
|
||||
0: SOS button sends an ALARM_REPORT to nodes group 1.
|
||||
1-255: SOS button sends an BASIC_SET, 0xFF to nodes group 1.
|
||||
</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Basic set as report -->
|
||||
<CommandClass id="32" setasreport="true" />
|
||||
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="2">
|
||||
<Group index="1" max_associations="8" label="Report"/>
|
||||
<Group index="2" max_associations="8" label="Not used"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Basic set as report -->
|
||||
<CommandClass id="32">
|
||||
<Compatibility>
|
||||
<SetAsReport>true</SetAsReport>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="2">
|
||||
<Group index="1" label="Report" max_associations="8"/>
|
||||
<Group index="2" label="Not used" max_associations="8"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--http://benext.eu/static/manual/plugindimmer.pdf-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="2">
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--http://benext.eu/static/manual/scenecontroller.pdf-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<CommandClass id="91" action="add" scenecount="16" />
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="2">
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
|
||||
|
|
|
@ -1,49 +1,84 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--http://www.pepper1.net/zwavedb/device/302-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product Revision="5" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/008A:0100:0007</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/BeNext/TagReader.png</MetaDataItem>
|
||||
<MetaDataItem id="0100" name="ZWProductPage" type="0007">https://products.z-wavealliance.org/products/43/</MetaDataItem>
|
||||
<MetaDataItem name="ProductSupport">info@benext.eu</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://www.benext.eu/en/products/tag-reader/</MetaDataItem>
|
||||
<MetaDataItem id="0100" name="FrequencyName" type="0007">CEPT (Europe)</MetaDataItem>
|
||||
<MetaDataItem name="Name">Tag Reader</MetaDataItem>
|
||||
<MetaDataItem id="0100" name="Identifier" type="0007">BeNext / TagReader</MetaDataItem>
|
||||
<MetaDataItem name="Description">By reading your RFID-Tag or pressing a manual code you are able to arm or disarm your security system. The Tag Reader can read multiple RFID-tags protocols. With the sound of the buzzer you will easily hear and see if your action was valid.
|
||||
|
||||
Place the Tag Reader close to the main exit of your office or home to enjoy it’s full potential.
|
||||
With the Tag Reader you can activate or de-activate your security by simply passing the RFID Tag in front of the reader. It is called a Tag Reader because it uses RFID Tags to identify people and their personal preferences around leaving the house or coming home.
|
||||
|
||||
Separately from working with RFID Tags, the Tag Reader also has a numerical keypad. Within the free of charge online manager you can configure a numerical code. This way you prevent being locked out of the system in case you may have lost the RFID Tag.
|
||||
|
||||
By using the Tag Reader intelligently you can secure your house and save money on your energy bill at the same time. You can actually let your house ‘fall asleep’ when enabling the ‘Away Scene’. This is especially noted when u are using energy saving products of BeNext such as Radiator Control and of course a Energy Switch.
|
||||
- The TagReader has the possibility for the user to manually insert codes.
|
||||
- The TagReaders indicator light will react differently on each action.
|
||||
- The TagReader has a buzzer, which can be used as walk-in/walk-out notification
|
||||
(alarm is being disabled/activated).
|
||||
|
||||
- arm/disarm a security system.
|
||||
- Battery operated device for easy mounting on any place.
|
||||
- Multiple tags support ISO15693, ISO18000-3, Tag-it™
|
||||
- Easy installation with NWI - get in control of your alarm system.
|
||||
|
||||
The dimensions are 6 x 6 x 2 cm (LxBxH). The color of the product is traffic White, RAL 9016.
|
||||
Switch between the scenes ‘Home’ and ‘Away’ easily and initiate security measures or instead de-activate them easily without use of complicated coding
|
||||
• Let your house ‘wake up’ or instead ‘fall asleep’. This way you can save enormously on your energy bill
|
||||
• Product dimensions: 62 x 62 x 20 millimeter (L x W x H)
|
||||
• Normal operating voltage: 2x AA 1.5V batteries. From 2.3Vdc to 4.0Vdc. Do not use rechargeable batteries
|
||||
• Battery lifetime: normal usage will give approximately a lifetime of 5 years. Notice: long and big networks will increase the battery lifetime
|
||||
• Protocols supported: ISO15693, ISO18000-3, Tag-it™, RFID
|
||||
• Buzzer-sound: approximately 60dB at 10 centimeters distance
|
||||
</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="5">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/43/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
|
||||
<Value type="byte" genre="config" instance="1" index="1" label="Set to Default" value="-1">
|
||||
<Value genre="config" index="1" instance="1" label="Set to Default" type="byte" value="-1">
|
||||
<Help>Set all configuration values to default values (factory settings).</Help>
|
||||
</Value>
|
||||
|
||||
<Value type="list" genre="config" instance="1" index="2"
|
||||
label="Feedback Time" value="0" size="1">
|
||||
<Value genre="config" index="2" instance="1" label="Feedback Time" size="1" type="list" value="0">
|
||||
<Help>To configure the time the beep is automatically turned off in seconds.</Help>
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Endless" value="-1"/>
|
||||
</Value>
|
||||
|
||||
<Value type="byte" genre="config" instance="1" index="3" label="Feedback Timeout" value="0">
|
||||
<Value genre="config" index="3" instance="1" label="Feedback Timeout" type="byte" value="0">
|
||||
<Help>To configure the timeout to wait for a WAKEUP_NO_MORE_INFORMATION before the error beep is automatically sound. The error beeps are fixed 8 beeps shortly after each other.</Help>
|
||||
</Value>
|
||||
|
||||
<Value type="byte" genre="config" instance="1" index="4" label="Feedback Beeps per Second" value="2">
|
||||
<Value genre="config" index="4" instance="1" label="Feedback Beeps per Second" type="byte" value="2">
|
||||
<Help>To configure the number of beeps per second. Every beep is fixed about 10ms.</Help>
|
||||
</Value>
|
||||
|
||||
<Value type="byte" genre="config" instance="1" index="5" label="The Mode" value="1">
|
||||
<Value genre="config" index="5" instance="1" label="The Mode" type="byte" value="1">
|
||||
<Help>To configure the operating mode. If any mode other then 3, that value will be reported after a get but will be handled in SW as mode 1.</Help>
|
||||
<Item label="Mode 1: Normal operating mode." value="1"/>
|
||||
<Item label="Mode 3: Z-Wave chip is always on to request e.g. version or manufacturer id." value="3"/>
|
||||
</Value>
|
||||
|
||||
<Value type="byte" genre="config" instance="1" index="6" label="RFID circuit startup time" value="100">
|
||||
<Help>The time (*10 ms) that the RFID circuit is started after home or away is pressed (default 100 = 100*10ms=1s)</Help>
|
||||
</Value>
|
||||
|
||||
<Value genre="config" index="6" instance="1" label="RFID circuit startup time" type="byte" value="100">
|
||||
<Help>The time (*10 ms) that the RFID circuit is started after home or away is pressed (default 100 = 100*10ms=1s)</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
|
||||
<!-- COMMAND_CLASS_ALARM AlarmCmd_Get not supported -->
|
||||
<CommandClass id="113" getsupported="false" />
|
||||
|
||||
<CommandClass id="113">
|
||||
<Compatibility>
|
||||
<GetSupported>false</GetSupported>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<CommandClass id="99">
|
||||
<Compatibility>
|
||||
<ExposeRawUserCodes>true</ExposeRawUserCodes>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="5" label="Group 1" />
|
||||
<Group index="1" label="Group 1" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
|
||||
</Product>
|
||||
|
|
|
@ -1,70 +1,59 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--http://www.pepper1.net/zwavedb/device/302-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
|
||||
<Value type="list" genre="config" instance="1" index="1" label="Set to Default" size="1" value="170">
|
||||
<Help>To configure the always awake mode.</Help>
|
||||
<Item label="Normal" value="170"/>
|
||||
<Item label="Set all parameters to default" value="255"/>
|
||||
</Value>
|
||||
|
||||
<Value type="byte" genre="config" instance="1" index="2" label="Feedback Time" units="seconds" value="15">
|
||||
<Help>To configure the time the beep is automatically turned off in seconds.
|
||||
<Product Revision="3" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="1" instance="1" label="Set to Default" size="1" type="list" value="170">
|
||||
<Help>To configure the always awake mode.</Help>
|
||||
<Item label="Normal" value="170"/>
|
||||
<Item label="Set all parameters to default" value="255"/>
|
||||
</Value>
|
||||
<Value genre="config" index="2" instance="1" label="Feedback Time" type="byte" units="seconds" value="15">
|
||||
<Help>To configure the time the beep is automatically turned off in seconds.
|
||||
0x00: Disable, 0x01 - 0xFE: Value in seconds
|
||||
</Help>
|
||||
</Value>
|
||||
|
||||
<Value type="byte" genre="config" instance="1" index="3" label="Feedback Timeout" units="seconds" value="0">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="3" instance="1" label="Feedback Timeout" type="byte" units="seconds" value="0">
|
||||
<Help>
|
||||
To configure the timeout to wait for a WAKEUP_NO_MORE_INFORMATION before the error beep
|
||||
is automatically sound. The error beeps are fixed 8 beeps shortly after each other.
|
||||
0x00: Disabled, 0x01 - 0xFF: Value in seconds
|
||||
</Help>
|
||||
</Value>
|
||||
|
||||
<Value type="byte" genre="config" instance="1" index="4" label="Feedback beeps per second" value="2">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="4" instance="1" label="Feedback beeps per second" type="byte" value="2">
|
||||
<Help>
|
||||
To configure the number of beeps per second. Every beep is fixed about 10ms.
|
||||
0x00 - 0xFF: Number of beeps per second
|
||||
</Help>
|
||||
</Value>
|
||||
|
||||
<Value type="list" genre="config" instance="1" index="5" label="Always awake mode" size="1" value="1">
|
||||
<Help>To configure the always awake mode.</Help>
|
||||
<Item label="Normal operating" value="1"/>
|
||||
<Item label="Always awake" value="3"/>
|
||||
</Value>
|
||||
|
||||
<Value type="list" genre="config" instance="1" index="7" label="Operation mode" size="1" value="0">
|
||||
<Help>The mode that the Tag Reader 500 communicates with the associated gateway.</Help>
|
||||
<Item label="Gateway mode" value="0"/>
|
||||
<Item label="Local mode" value="1"/>
|
||||
</Value>
|
||||
|
||||
<Value type="list" genre="config" instance="1" index="8" label="Gateway confirmation" size="1" value="0">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="5" instance="1" label="Always awake mode" size="1" type="list" value="1">
|
||||
<Help>To configure the always awake mode.</Help>
|
||||
<Item label="Normal operating" value="1"/>
|
||||
<Item label="Always awake" value="3"/>
|
||||
</Value>
|
||||
<Value genre="config" index="7" instance="1" label="Operation mode" size="1" type="list" value="0">
|
||||
<Help>The mode that the Tag Reader 500 communicates with the associated gateway.</Help>
|
||||
<Item label="Gateway mode" value="0"/>
|
||||
<Item label="Local mode" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="8" instance="1" label="Gateway confirmation" size="1" type="list" value="0">
|
||||
<Help>
|
||||
In gateway mode it is possible to let the gateway decide if the Tag Reader 500 can arm to home or away.
|
||||
If gateway indication is disabled the Tag Reader 500 automatically assumes that it can arm and will wait
|
||||
for a user input of RFID TAG or numeric code.
|
||||
</Help>
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Enabled" value="1"/>
|
||||
</Value>
|
||||
|
||||
|
||||
</CommandClass>
|
||||
|
||||
<!-- COMMAND_CLASS_ALARM AlarmCmd_Get not supported -->
|
||||
<CommandClass id="113" getsupported="false"/>
|
||||
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="5" label="Lifeline"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Enabled" value="1"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- COMMAND_CLASS_ALARM AlarmCmd_Get not supported -->
|
||||
<CommandClass id="113">
|
||||
<Compatibility>
|
||||
<GetSupported>false</GetSupported>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" label="Lifeline" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
37
config/BeNext/mydisplay.xml
Normal file
37
config/BeNext/mydisplay.xml
Normal file
|
@ -0,0 +1,37 @@
|
|||
<Product Revision="1" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/008A:0100:0002</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/BeNext/mydisplay.png</MetaDataItem>
|
||||
<MetaDataItem id="0100" name="ZWProductPage" type="0002">https://products.z-wavealliance.org/products/39/</MetaDataItem>
|
||||
<MetaDataItem name="Name">Remote Display</MetaDataItem>
|
||||
<MetaDataItem name="Description">The Remote Display is a controlling device for changing automated lifestyles, selecting a scene or controlling individual products. The blue illuminated display provides comfortable readability during dark hours.
|
||||
Two hotkey buttons are available which can be configured to your own wishes within the free of charge online manager.
|
||||
The Remote Display runs on two AAA batteries, with an expected lifetime of four years.
|
||||
|
||||
Features:
|
||||
Control and manage different scenes easily from one controller
|
||||
Easy to configure
|
||||
Control individual products
|
||||
|
||||
Specifications:
|
||||
Z Cert Prod Pkg ExcpLogo W max Converted Remote Display
|
||||
Product dimensions: 170 x 45 x 22 millimeter (L x W x H)
|
||||
Normal operating voltage: 2x AAA 1,5V batteries. From 2,3Vdc to 4,0Vdc. Do not use rechargeable batteries
|
||||
Storage temperature: -5°C to +65°C
|
||||
Storage humidity: 10% to 70%
|
||||
Operating temperature: 0°C to 50°C
|
||||
Operating humidity: 30% to 80%
|
||||
Frequency range: 868.42 MHz (Z-Wave)
|
||||
Maximum wireless range: 100 meters in line of sight
|
||||
Average wireless range: 30 meter
|
||||
Mesh-network wireless range: 150 to 300 meters (maximum of 4 hops)</MetaDataItem>
|
||||
<MetaDataItem name="ProductSupport">info@benext.eu</MetaDataItem>
|
||||
<MetaDataItem id="0100" name="Identifier" type="0002">BeNext myDisplay</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://www.benext.eu/en/products/remote-display/</MetaDataItem>
|
||||
<MetaDataItem id="0100" name="FrequencyName" type="0002">CEPT (Europe)</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="1">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/39/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<CommandClass id="112"/>
|
||||
</Product>
|
20
config/BeNext/mygate.xml
Normal file
20
config/BeNext/mygate.xml
Normal file
|
@ -0,0 +1,20 @@
|
|||
<Product Revision="1" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/008A:0100:0001</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/BeNext/mygate.png</MetaDataItem>
|
||||
<MetaDataItem id="0100" name="ZWProductPage" type="0001">https://products.z-wavealliance.org/products/53/</MetaDataItem>
|
||||
<MetaDataItem id="0100" name="Identifier" type="0001">BeNeXt / Internet Gateway</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://www.benext.eu/en/products/internet-gateway/</MetaDataItem>
|
||||
<MetaDataItem name="ProductSupport">info@Benext.eu</MetaDataItem>
|
||||
<MetaDataItem name="Description">The Benext Internet Gateway is a static controller with Internet connection.
|
||||
It is configured with lifestyles and rules for different scenes and operates with the BeNext Framework.
|
||||
|
||||
Connect the Internet Gateway onto your Smart meter and start reading out data, completely independent from your local power supplier. The Gateway gives you access to our famed free of charge online manager. In this online environment you can, among many other features, set up energy targets, read out and compare revenues from installed solar panels and manage your use of gas. The more BeNext products you will use and install on the Gateway the better you’ll be able to automate big savings and broaden luxury and safety features.</MetaDataItem>
|
||||
<MetaDataItem name="Name">Internet Gateway</MetaDataItem>
|
||||
<MetaDataItem id="0100" name="FrequencyName" type="0001">CEPT (Europe)</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="1">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/53/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<CommandClass id="112"/>
|
||||
</Product>
|
2262
config/Localization.xml
Normal file
2262
config/Localization.xml
Normal file
File diff suppressed because it is too large
Load diff
69
config/Localization.xsd
Normal file
69
config/Localization.xsd
Normal file
|
@ -0,0 +1,69 @@
|
|||
<?xml version='1.0'?>
|
||||
<xs:schema
|
||||
xmlns:xs='http://www.w3.org/2001/XMLSchema'
|
||||
targetNamespace='https://github.com/OpenZWave/open-zwave'
|
||||
xmlns:Localization='https://github.com/OpenZWave/open-zwave'
|
||||
elementFormDefault='qualified'>
|
||||
|
||||
<xs:element name='Localization'>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref='Localization:CommandClass' minOccurs='0' maxOccurs='unbounded'/>
|
||||
<xs:element ref='Localization:GlobalText' minOccurs='0' maxOccurs='unbounded' />
|
||||
</xs:sequence>
|
||||
<xs:attribute name='Revision' type='xs:integer' use='required'/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name='CommandClass'>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref='Localization:Label' minOccurs='1' maxOccurs='unbounded'/>
|
||||
<xs:element ref='Localization:Value' minOccurs='0' maxOccurs='unbounded'/>
|
||||
</xs:sequence>
|
||||
<xs:attribute name='id' type='xs:string' use='required'/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name='Value'>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref='Localization:Help' minOccurs='1' maxOccurs='unbounded'/>
|
||||
<xs:element ref='Localization:Label' minOccurs='1' maxOccurs='unbounded'/>
|
||||
<xs:element ref='Localization:ItemLabel' minOccurs='0' maxOccurs='unbounded'/>
|
||||
</xs:sequence>
|
||||
<xs:attribute name='index' type='xs:string' use='required'/>
|
||||
<xs:attribute name='pos' type='xs:string' use='optional'/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name='Label'>
|
||||
<xs:complexType mixed='true'>
|
||||
<xs:attribute name='lang' type='xs:string' use='optional'/>
|
||||
<xs:attribute name='name' type='xs:string' use='optional'/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name='Help'>
|
||||
<xs:complexType mixed='true'>
|
||||
<xs:attribute name='lang' type='xs:string' use='optional'/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name='ItemLabel'>
|
||||
<xs:complexType mixed='true'>
|
||||
<xs:attribute name='lang' type='xs:string' use='optional'/>
|
||||
<xs:attribute name='itemIndex' type='xs:string' use='required'/>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name='GlobalText'>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref='Localization:Label' minOccurs='1' maxOccurs='unbounded'/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
|
||||
</xs:schema>
|
551
config/NotificationCCTypes.xml
Normal file
551
config/NotificationCCTypes.xml
Normal file
|
@ -0,0 +1,551 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<NotificationTypes xmlns='https://github.com/OpenZWave/open-zwave' Revision="6">
|
||||
<!-- Please keep this file in Sync with the Localization.xml file for the Notification CC -->
|
||||
<AlarmType id="1" name="Smoke Alarm">
|
||||
<AlarmEvent id="0" name="Clear">
|
||||
<AlarmEventParam id="256" type="byte" name="Previous Event Cleared" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="1" name="Smoke Detected at Location">
|
||||
<AlarmEventParam id="257" type="location" name="Alert Location" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="2" name="Smoke Detected at Unknown Location">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="3" name="Smoke Test">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="4" name="Replacement Required (Unspecified)">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="5" name="Replacement Required (End Of Life)">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="6" name="Silenced">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="7" name="Maintenance Required: Periodic Inspection">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="8" name="Maintenance Required: Dust In Device">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="254" name="Unknown Event">
|
||||
</AlarmEvent>
|
||||
</AlarmType>
|
||||
|
||||
<AlarmType id="2" name="Carbon Monoxied">
|
||||
<AlarmEvent id="0" name="Clear">
|
||||
<AlarmEventParam id="256" type="byte" name="Previous Event Cleared" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="1" name="Carbon Monoxied Detected at Location">
|
||||
<AlarmEventParam id="257" type="location" name="Alert Location" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="2" name="Carbon Monoxied Detected at Unknown Location">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="3" name="Test">
|
||||
<AlarmEventParam id="258" type="list" name="Result">
|
||||
<Item id="1" label="Passed" />
|
||||
<Item id="2" label="Failed" />
|
||||
</AlarmEventParam>
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="4" name="Replacement Required (Unspecified)">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="5" name="Replacement Required (End Of Life)">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="6" name="Silenced">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="7" name="Maintence Required: Periodic Inspection">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="254" name="Unknown Event">
|
||||
</AlarmEvent>
|
||||
</AlarmType>
|
||||
|
||||
<AlarmType id="3" name="Carbon Dixoide">
|
||||
<AlarmEvent id="0" name="Clear">
|
||||
<AlarmEventParam id="256" type="byte" name="Previous Event Cleared" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="1" name="Carbon Dixoide Detected at Location">
|
||||
<AlarmEventParam id="257" type="location" name="Alert Location" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="2" name="Carbon Dixoid Detected at Unknown Location">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="3" name="Test">
|
||||
<AlarmEventParam id="258" type="list" name="Result">
|
||||
<Item id="1" label="Passed" />
|
||||
<Item id="2" label="Failed" />
|
||||
</AlarmEventParam>
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="4" name="Replacement Required (Unspecified)">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="5" name="Replacement Required (End Of Life)">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="6" name="Silenced">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="7" name="Maintence Required: Periodic Inspection">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="254" name="Unknown Event">
|
||||
</AlarmEvent>
|
||||
</AlarmType>
|
||||
|
||||
<AlarmType id="4" name="Heat">
|
||||
<AlarmEvent id="0" name="Clear">
|
||||
<AlarmEventParam id="256" type="byte" name="Previous Event Cleared" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="1" name="OverHeat at Location">
|
||||
<AlarmEventParam id="257" type="location" name="Alert Location" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="2" name="OverHeat at Unknown at Location">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="3" name="Rapid Temperature Rise at Location">
|
||||
<AlarmEventParam id="257" type="location" name="Alert Location" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="4" name="Rapid Temperature Rise at Unknown Location">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="5" name="UnderHeat at Location">
|
||||
<AlarmEventParam id="257" type="location" name="Alert Location" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="6" name="UnderHeat at Unknown Location">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="7" name="Test">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="8" name="Replacement Required (End_Of_Life)">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="9" name="Silenced">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="10" name="Maintenance Required: Dust In Device">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="11" name="Maintenance_Required: Periodic Inspection">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="254" name="Unknown Event">
|
||||
</AlarmEvent>
|
||||
</AlarmType>
|
||||
|
||||
<AlarmType id="5" name="Water">
|
||||
<AlarmEvent id="0" name="Clear">
|
||||
<AlarmEventParam id="256" type="byte" name="Previous Event Cleared" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="1" name="Water Leak at Location">
|
||||
<AlarmEventParam id="257" type="location" name="Alert Location" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="2" name="Water Leak at Unknown Location">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="3" name="Water Level Droped at Location">
|
||||
<AlarmEventParam id="257" type="location" name="Alert Location" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="4" name="Water Level Droped at Unnknown Location">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="5" name="Replace Filter">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="6" name="Water Flow">
|
||||
<AlarmEventParam id="259" type="list" name="Threshold">
|
||||
<Item id="1" label="No Data" />
|
||||
<Item id="2" label="Below Low Threshold" />
|
||||
<Item id="3" label="Above High Threshold" />
|
||||
<Item id="4" label="Max" />
|
||||
</AlarmEventParam>
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="7" name="Water Pressure">
|
||||
<AlarmEventParam id="259" type="list" name="Type">
|
||||
<Item id="1" label="No Data" />
|
||||
<Item id="2" label="Below Low Threshold" />
|
||||
<Item id="3" label="Above High Threshold" />
|
||||
<Item id="4" label="Max" />
|
||||
</AlarmEventParam>
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="254" name="Unknown Event">
|
||||
</AlarmEvent>
|
||||
</AlarmType>
|
||||
|
||||
<AlarmType id="6" name="Access Control">
|
||||
<AlarmEvent id="0" name="Clear">
|
||||
<AlarmEventParam id="256" type="byte" name="Previous Event Cleared" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="1" name="Manual Lock Operation">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="2" name="Manual Unlock Operation">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="3" name="Wireless Lock Operation">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="4" name="Wireless Unlock Operation">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="5" name="Keypad Lock Operation">
|
||||
<AlarmEventParam id="260" type="usercodereport" name="User Code" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="6" name="Keypad Unlock Operation">
|
||||
<AlarmEventParam id="260" type="usercodereport" name="User Code" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="7" name="Manual Lock Not Fully Locked">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="8" name="Wireless Not Fully Locked">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="9" name="Auto Lock">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="10" name="Auto Lock Not Fully Locked">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="11" name="Lock Jamed">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="12" name="All User Codes Deleted">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="13" name="Single User Code Deleted">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="14" name="New User Code Added">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="15" name="Duplicate User Code Not Added">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="16" name="Keypad Disabled">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="17" name="Keypad Busy">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="18" name="New Program Code Entered">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="19" name="User Codes Attempt Exceeds Limit">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="20" name="Wireless Unlock Invalid UserCode Entered">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="21" name="Wireless Lock Invalid UserCode Entered">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="22" name="Door/Window Open">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="23" name="Door/Window Closed">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="64" name="Barrier Initializing">
|
||||
<AlarmEventParam id="262" type="list" name="Progress">
|
||||
<Item id="0" label="Process Complete" />
|
||||
<Item id="255" label="Performing Process" />
|
||||
</AlarmEventParam>
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="65" name="Barrier Force Exceeded">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="66" name="Barrier Motor Time Exceeded">
|
||||
<AlarmEventParam id="1" type="byte" name="Time Limit" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="67" name="Barrier Physical Limits Exceeded">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="68" name="Barrier Failed Operation">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="69" name="Barrier Unattended Operation Disabled">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="70" name="Barrier Malfunction">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="71" name="Barrier Vacaction Mode">
|
||||
<AlarmEventParam id="263" type="list" name="Mode">
|
||||
<Item id="0" label="Disabled" />
|
||||
<Item id="255" label="Enabled" />
|
||||
</AlarmEventParam>
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="72" name="Barrier Saftey Beam Obstruction">
|
||||
<AlarmEventParam id="264" type="list" name="Obstruction">
|
||||
<Item id="0" label="No Obstruction" />
|
||||
<Item id="255" label="Obstruction" />
|
||||
</AlarmEventParam>
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="73" name="Barrier Sensor Not Detected">
|
||||
<AlarmEventParam id="265" type="byte" name="Sensor ID" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="74" name="Barrier Battery Low">
|
||||
<AlarmEventParam id="265" type="byte" name="Sensor ID" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="75" name="Barrier Short in Wall Station Wires">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="76" name="Barrier Associated with Non ZWave Device">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="254" name="Unknown Event">
|
||||
</AlarmEvent>
|
||||
</AlarmType>
|
||||
|
||||
<AlarmType id="7" name="Home Security">
|
||||
<AlarmEvent id="0" name="Clear">
|
||||
<AlarmEventParam id="256" type="byte" name="Previous Event Cleared" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="1" name="Intrusion at Location">
|
||||
<AlarmEventParam id="257" type="location" name="Alert Location" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="2" name="Intrusion at Unknown Location">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="3" name="Tampering - Cover Removed">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="4" name="Tamperting - Invalid Code">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="5" name="Glass Breakage at Location">
|
||||
<AlarmEventParam id="257" type="location" name="Alert Location" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="6" name="Glass Breakage at UnknownLocation">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="7" name="Motion Detected at Location">
|
||||
<AlarmEventParam id="257" type="location" name="Alert Location" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="8" name="Motion Detected at Unknown Location">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="9" name="Tampering - Product Moved">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="254" name="Unknown Event">
|
||||
</AlarmEvent>
|
||||
</AlarmType>
|
||||
|
||||
<AlarmType id="8" name="Power Management">
|
||||
<AlarmEvent id="0" name="Clear">
|
||||
<AlarmEventParam id="256" type="byte" name="Previous Event Cleared" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="1" name="Power Applied">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="2" name="AC Power Lost">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="3" name="AC Power Restored">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="4" name="Surge Detected">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="5" name="Brownout Detected">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="6" name="Over Current Detected">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="7" name="Over Voltage Voltage">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="8" name="Over Load Detected">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="9" name="Load Error">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="10" name="Replace Battery Soon">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="11" name="Replace Battery Now">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="12" name="Battery Charging">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="13" name="Battery Charged">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="14" name="Battery Low">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="15" name="Battery Critical">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="254" name="Unknown Event">
|
||||
</AlarmEvent>
|
||||
</AlarmType>
|
||||
|
||||
<AlarmType id="9" name="System">
|
||||
<AlarmEvent id="0" name="Clear">
|
||||
<AlarmEventParam id="256" type="byte" name="Previous Event Cleared" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="1" name="Hardware Failure">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="2" name="Software Failure">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="3" name="Hardware Failure Code">
|
||||
<AlarmEventParam id="266" type="string" name="Error Code" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="4" name="Software Failure Code">
|
||||
<AlarmEventParam id="266" type="string" name="Error Code" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="5" name="Heartbeat">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="6" name="Tampering Detected">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="7" name="Emergency Shutoff">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="254" name="Unknown_Event">
|
||||
</AlarmEvent>
|
||||
</AlarmType>
|
||||
|
||||
<AlarmType id="10" name="Emergency">
|
||||
<AlarmEvent id="0" name="Clear">
|
||||
<AlarmEventParam id="256" type="byte" name="Previous Event Cleared" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="1" name="Contact Police Department">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="2" name="Contact Fire Department">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="3" name="Contact Medical Service">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="254" name="Unknown Event">
|
||||
</AlarmEvent>
|
||||
</AlarmType>
|
||||
|
||||
<AlarmType id="11" name="Clock">
|
||||
<AlarmEvent id="0" name="Clear">
|
||||
<AlarmEventParam id="256" type="byte" name="Previous Event Cleared" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="1" name="Wake Up Alert">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="2" name="Timer Ending">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="3" name="Time Remaining">
|
||||
<AlarmEventParam id="267" type="duration" name="Duration" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="254" name="Unknown Event">
|
||||
</AlarmEvent>
|
||||
</AlarmType>
|
||||
|
||||
<AlarmType id="12" name="Appliance">
|
||||
<AlarmEvent id="0" name="Clear">
|
||||
<AlarmEventParam id="256" type="byte" name="Previous Event Cleared" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="1" name="Program Started">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="2" name="Program In Progress">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="3" name="Program Completed">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="4" name="Replace Main Filter">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="5" name="Failure To Set Temperature">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="6" name="Supplying Water">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="7" name="Water Supply Failure">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="8" name="Boiling">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="9" name="Boiling Failure">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="10" name="Washing">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="11" name="Washing Failure">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="12" name="Rinsing">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="13" name="Rinsing Failure">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="14" name="Draining">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="15" name="Draining Failure">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="16" name="Spinning">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="17" name="Spinning Failure">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="18" name="Drying">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="19" name="Drying Failure">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="20" name="Fan Failure">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="21" name="Compressor Failure">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="254" name="Unknown Event">
|
||||
</AlarmEvent>
|
||||
</AlarmType>
|
||||
|
||||
<AlarmType id="13" name="Home Health">
|
||||
<AlarmEvent id="0" name="Clear">
|
||||
<AlarmEventParam id="256" type="byte" name="Previous Event Cleared" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="1" name="Leaving Bed">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="2" name="Sitting On Bed">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="3" name="Lying On Bed">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="4" name="Posture Changed">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="5" name="Sitting On Edge Of Bed">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="6" name="Volatile Organic Level">
|
||||
<AlarmEventParam id="268" type="list" name="Pollution Level">
|
||||
<Item id="1" label="Clean" />
|
||||
<Item id="2" label="Slightly Polluted" />
|
||||
<Item id="3" label="Moderately Polluted" />
|
||||
<Item id="4" label="Highly Polluted" />
|
||||
</AlarmEventParam>
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="254" name="Unknown Event">
|
||||
</AlarmEvent>
|
||||
</AlarmType>
|
||||
|
||||
<AlarmType id="14" name="Siren">
|
||||
<AlarmEvent id="0" name="Clear">
|
||||
<AlarmEventParam id="256" type="byte" name="Previous Event Cleared" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="1" name="Active">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="254" name="Unknown Event">
|
||||
</AlarmEvent>
|
||||
</AlarmType>
|
||||
|
||||
<AlarmType id="15" name="Water Valve">
|
||||
<AlarmEvent id="0" name="Clear">
|
||||
<AlarmEventParam id="256" type="byte" name="Previous Event Cleared" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="1" name="Valve Operation">
|
||||
<AlarmEventParam id="269" type="list" name="Status">
|
||||
<Item id="0" label="Off" />
|
||||
<Item id="1" label="On" />
|
||||
</AlarmEventParam>
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="2" name="Master Valve Operation">
|
||||
<AlarmEventParam id="269" type="list" name="Status">
|
||||
<Item id="0" label="Off" />
|
||||
<Item id="1" label="On" />
|
||||
</AlarmEventParam>
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="3" name=" Valve Short Circuit">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="4" name="Master Valve Short Circuit">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="5" name="Valve Current Alarm">
|
||||
<AlarmEventParam id="259" type="list" name="Type">
|
||||
<Item id="1" label="No Data" />
|
||||
<Item id="2" label="Below Low Threshold" />
|
||||
<Item id="3" label="Above High Threshold" />
|
||||
<Item id="4" label="Max" />
|
||||
</AlarmEventParam>
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="6" name="Master Valve Current Alarm">
|
||||
<AlarmEventParam id="259" type="list" name="Type">
|
||||
<Item id="1" label="No Data" />
|
||||
<Item id="2" label="Below Low Threshold" />
|
||||
<Item id="3" label="Above High Threshold" />
|
||||
<Item id="4" label="Max" />
|
||||
</AlarmEventParam>
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="254" name="Unknown Event">
|
||||
</AlarmEvent>
|
||||
</AlarmType>
|
||||
|
||||
<AlarmType id="16" name="Weather">
|
||||
<AlarmEvent id="0" name="Clear">
|
||||
<AlarmEventParam id="256" type="byte" name="Previous Event Cleared" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="1" name="Rain Detected">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="2" name="Moisture Detected">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="254" name="Unknown Event">
|
||||
</AlarmEvent>
|
||||
</AlarmType>
|
||||
|
||||
<AlarmType id="17" name="Irrigation">
|
||||
<AlarmEvent id="0" name="Clear">
|
||||
<AlarmEventParam id="256" type="byte" name="Previous Event Cleared" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="1" name="Schedule Started">
|
||||
<AlarmEventParam id="270" type="byte" name="Schedule ID" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="2" name="Schedule Finished">
|
||||
<AlarmEventParam id="270" type="byte" name="Schedule ID" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="3" name="Valve Table Run Started">
|
||||
<AlarmEventParam id="271" type="byte" name="Valve Table ID" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="4" name="Valve Table Run Finished">
|
||||
<AlarmEventParam id="271" type="byte" name="Valve Table ID" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="5" name="Device Not Configured">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="254" name="Unknown Event">
|
||||
</AlarmEvent>
|
||||
</AlarmType>
|
||||
|
||||
<AlarmType id="18" name="Gas">
|
||||
<AlarmEvent id="0" name=" Clear">
|
||||
<AlarmEventParam id="256" type="byte" name="Previous Event Cleared" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="1" name="Combustable Gas Detected at Location">
|
||||
<AlarmEventParam id="257" type="location" name="Alert Location" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="2" name="Combustable Gas Detected at Unknown Location">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="3" name="Toxic Gas Detected at Location">
|
||||
<AlarmEventParam id="257" type="location" name="Alert Location" />
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="4" name="Toxic Gas Detected Unknown Location">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="5" name="Test">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="6" name="Replacement Required (Unspecified)">
|
||||
</AlarmEvent>
|
||||
<AlarmEvent id="254" name="Unknown Event">
|
||||
</AlarmEvent>
|
||||
</AlarmType>
|
||||
|
||||
</NotificationTypes>
|
64
config/NotificationCCTypes.xsd
Normal file
64
config/NotificationCCTypes.xsd
Normal file
|
@ -0,0 +1,64 @@
|
|||
<?xml version='1.0'?>
|
||||
<xs:schema xmlns:xs='http://www.w3.org/2001/XMLSchema' targetNamespace='https://github.com/OpenZWave/open-zwave' xmlns:NotificationTypes='https://github.com/OpenZWave/open-zwave' elementFormDefault='qualified'>
|
||||
|
||||
<xs:element name='NotificationTypes'>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref='NotificationTypes:AlarmType' minOccurs='1' maxOccurs='unbounded' />
|
||||
</xs:sequence>
|
||||
<xs:attribute name='Revision' type='xs:integer' use='required' />
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name='AlarmType'>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref='NotificationTypes:AlarmEvent' minOccurs='1' maxOccurs='unbounded' />
|
||||
</xs:sequence>
|
||||
<xs:attribute name='id' type='xs:string' use='required' />
|
||||
<xs:attribute name='name' type='xs:string' use='required' />
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name='AlarmEvent'>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref='NotificationTypes:AlarmEventParam' minOccurs='0' maxOccurs='1' />
|
||||
</xs:sequence>
|
||||
<xs:attribute name='id' type='xs:string' use='required' />
|
||||
<xs:attribute name='name' type='xs:string' use='required' />
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name='AlarmEventParam'>
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element ref='NotificationTypes:Item' minOccurs='0' maxOccurs='unbounded' />
|
||||
</xs:sequence>
|
||||
<xs:attribute name='id' type='xs:string' use='required' />
|
||||
<xs:attribute name='type' use='required'>
|
||||
<xs:simpleType>
|
||||
<xs:restriction base='xs:string'>
|
||||
<xs:enumeration value='location' />
|
||||
<xs:enumeration value='list' />
|
||||
<xs:enumeration value='usercodereport' />
|
||||
<xs:enumeration value='byte' />
|
||||
<xs:enumeration value='string' />
|
||||
<xs:enumeration value='duration' />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:attribute>
|
||||
|
||||
<xs:attribute name='name' type='xs:string' use='required' />
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
<xs:element name='Item'>
|
||||
<xs:complexType>
|
||||
<xs:attribute name='id' type='xs:string' use='required' />
|
||||
<xs:attribute name='label' type='xs:string' use='required' />
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
|
||||
|
||||
</xs:schema>
|
|
@ -1,4 +1,28 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Protocol nodeinfosupported="false" />
|
||||
<Product Revision="2" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0001:3133:5246</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/act/lfm20.png</MetaDataItem>
|
||||
<MetaDataItem id="3133" name="ZWProductPage" type="5246">https://products.z-wavealliance.org/products/134/</MetaDataItem>
|
||||
<MetaDataItem name="Name">ZRF113 - Isolated Contact Fixture Module</MetaDataItem>
|
||||
<MetaDataItem name="ProductSupport">http://www.act-solutions.com/Contact-Advanced-Control-Technologies.html</MetaDataItem>
|
||||
<MetaDataItem id="3133" name="FrequencyName" type="5246">U.S. / Canada / Mexico</MetaDataItem>
|
||||
<MetaDataItem id="3133" name="Identifier" type="5246">ZRF113</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://www.act-solutions.com/HomePro-Product-Matrix.html#Euro</MetaDataItem>
|
||||
<MetaDataItem name="Description">- The relay on this device is isolated from the power line, so it can be used to switch any load, including low voltage. This can be used in areas where an X10 universal module may have been used.
|
||||
|
||||
- The LED on the ZRF113 will turn on when the load attached is ON. The LED is user configured however to turn ON when the load attached is OFF, if so desired.
|
||||
|
||||
- The ZRF113 supports the AS101 and AS001 auxiliary switch.
|
||||
|
||||
- Max load 20 amps.
|
||||
|
||||
- Supports Z-Wave 40Kbps speed
|
||||
|
||||
- Signal (Frequency): 908.42 MHz </MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="2">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/134/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<Protocol nodeinfosupported="false"/>
|
||||
<CommandClass id="112"/>
|
||||
</Product>
|
||||
|
|
|
@ -1,93 +1,112 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="1" genre="config" label="Ignore Start-Level (Transmitting)" size="1" value="1">
|
||||
<Help>Dimmers controlled by this switch will start dimming from their current level.</Help>
|
||||
<Item label="No" value="0" />
|
||||
<Item label="Yes" value="1" />
|
||||
</Value>
|
||||
<Value type="list" index="2" genre="config" label="Suspend Group 4" size="1" value="0">
|
||||
<Help>Disable transmitting commands to Z-Wave devices that are in Group 4 without disassociating those devices from the group.</Help>
|
||||
<Item label="No" value="0" />
|
||||
<Item label="Yes" value="1" />
|
||||
</Value>
|
||||
<Value type="list" index="3" genre="config" label="Night Light" size="1" value="0">
|
||||
<Help>In night-light mode the LED on the switch will turn ON when the switch is turned OFF.</Help>
|
||||
<Item label="No" value="0" />
|
||||
<Item label="Yes" value="1" />
|
||||
</Value>
|
||||
<Value type="list" index="4" genre="config" label="Invert Switch" size="1" value="0">
|
||||
<Help>Change the top of the switch to OFF and the bottom of the switch to ON. Note: If you invert the switches and also install the product upside down, remember the load will now be controlled by the right, not the left switch.</Help>
|
||||
<Item label="No" value="0" />
|
||||
<Item label="Yes" value="1" />
|
||||
</Value>
|
||||
<Value type="list" index="5" genre="config" label="Ignore Start-Level (Receiving)" size="1" value="1">
|
||||
<Help>This dimmer will start dimming from its current level.</Help>
|
||||
<Item label="No" value="0" />
|
||||
<Item label="Yes" value="1" />
|
||||
</Value>
|
||||
<Value type="list" index="6" genre="config" label="Don't Send Level After Dim" size="1" value="1">
|
||||
<Help>When you press and hold the bottom of the ZDM230 switch once, the Z-Wave devices that are associated into Group 1 are sent the Dim command. If this parameter is set to "Yes" the devices in Group 1 will not go to the same level as the ZDM230.</Help>
|
||||
<Item label="No" value="0" />
|
||||
<Item label="Yes" value="1" />
|
||||
</Value>
|
||||
<Value type="byte" index="7" genre="config" label="On/Off Command Dim Step" units="" min="1" max="99" value="1">
|
||||
<Help>Indicates how many levels the dimmer will change for each dimming step.</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="8" genre="config" label="On/Off Command Dim Rate" units="x 10 milliseconds" min="1" max="255" value="3">
|
||||
<Help>This value indicates in 10 millisecond resolution, how often the dim level will change. For example, if you set this parameter to 1, then every 10ms the dim level will change. If you set it to 255, then every 2.55 seconds the dim level will change.</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="9" genre="config" label="Local Control Dim Step" units="" min="1" max="99" value="1">
|
||||
<Help>Indicates how many levels the dimmer will change for each dimming step.</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="10" genre="config" label="Local Control Dim Rate" units="x 10 milliseconds" min="1" max="255" value="3">
|
||||
<Help>This value indicates in 10 millisecond resolution, how often the dim level will change. For example, if you set this parameter to 1, then every 10ms the dim level will change. If you set it to 255, then every 2.55 seconds the dim level will change.</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="11" genre="config" label="ALL ON/ALL OFF Dim Step" units="" min="1" max="99" value="1">
|
||||
<Help>Indicates how many levels the dimmer will change for each dimming step.</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="12" genre="config" label="ALL ON/ALL OFF Dim Rate" units="x 10 milliseconds" min="1" max="255" value="3">
|
||||
<Help>This value indicates in 10 millisecond resolution, how often the dim level will change. For example, if you set this parameter to 1, then every 10ms the dim level will change. If you set it to 255, then every 2.55 seconds the dim level will change.</Help>
|
||||
</Value>
|
||||
<Value type="list" index="13" genre="config" label="Disable Group 4 During Dim" size="1">
|
||||
<Help>Units in Group 4 only track when the dimmer is being turned ON and OFF and not while dimming.</Help>
|
||||
<Item label="No" value="0" />
|
||||
<Item label="Yes" value="1" />
|
||||
</Value>
|
||||
<Value type="list" index="14" genre="config" label="Enable Shade Control Group 2" size="1" value="0">
|
||||
<Help>The ZDM230 can operate shade control devices via its group 2.</Help>
|
||||
<Item label="No" value="0" />
|
||||
<Item label="Yes" value="1" />
|
||||
</Value>
|
||||
<Value type="list" index="15" genre="config" label="Enable Shade Control Group 3" size="1" value="0">
|
||||
<Help>The ZDM230 can operate shade control devices via its group 3.</Help>
|
||||
<Item label="No" value="0" />
|
||||
<Item label="Yes" value="1" />
|
||||
</Value>
|
||||
<Value type="list" index="19" genre="config" label="LED Transmission Indication" size="1" value="2">
|
||||
<Help>The ZDM230 will flicker its LED when it is transmitting to any of its 4 groups. This flickering can be set to not flicker at all, to flicker the entire time it is transmitting, or to flicker for only 1 second when it begins transmitting.</Help>
|
||||
<Item label="None" value="0" />
|
||||
<Item label="While Transmitting" value="1" />
|
||||
<Item label="One Second Maximum" value="2" />
|
||||
</Value>
|
||||
<Value type="byte" index="20" genre="config" label="Poll Group 2 Interval" units="minutes" min="1" max="255" value="2">
|
||||
<Help>Poll Group 2 Interval</Help>
|
||||
</Value>
|
||||
<Value type="list" index="22" genre="config" label="Enable Group 2 Polling" size="1">
|
||||
<Help>Poll Group 2</Help>
|
||||
<Item label="No" value="0" />
|
||||
<Item label="Yes" value="1" />
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<Product Revision="3" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0001:3330:444D</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/act/zdm230.png</MetaDataItem>
|
||||
<MetaDataItem id="3330" name="ZWProductPage" type="444D">https://products.z-wavealliance.org/products/478/</MetaDataItem>
|
||||
<MetaDataItem name="Name">ZDM230 - Dual button Wall Dimmer</MetaDataItem>
|
||||
<MetaDataItem id="3330" name="FrequencyName" type="444D">CEPT (Europe)</MetaDataItem>
|
||||
<MetaDataItem name="Description">The ZDM230 is a dual switch design, where the first switch controls the connected load and also serve as a transmitter using multiple switch taps (one group of 5 Z-Wave modules), and the second switch used as a transmitter only (controls two groups of 5 Z-Wave modules).
|
||||
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="4">
|
||||
<Group index="1" max_associations="5" label="Left Switch" />
|
||||
<Group index="2" max_associations="5" label="Right Switch" />
|
||||
<Group index="3" max_associations="5" label="Right Switch (2 Taps)" />
|
||||
<Group index="4" max_associations="5" label="Update Controller" auto="true" />
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
ZDM230 replaces an existing wall switch, and can add 3-way capability.
|
||||
|
||||
ZDM230 can be programmed as a routing slave to establish firm signal routes and can be "associated" with other Z-wave devices in order to control them.
|
||||
|
||||
ZDM230 has automatic Static Update Controller (SUC) capability. A Static Controller is one that is not moved after its addition to the network. The Static Controller can act as a gateway in the system, since other nodes always know its position. The “always listening” advantage of the Static Controller is that other nodes can transmit information frames to it whenever needed.
|
||||
|
||||
ZDM230 can be configured to Control Shades or Window Coverings via Z-Wave network</MetaDataItem>
|
||||
<MetaDataItem id="3330" name="Identifier" type="444D">ZDM230</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://www.smarthome-products.com/p-638-homepro-zdm230-z-wave-500-watt-dimmer-3-way-3-wire-euro.aspx</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="3">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/478/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="1" label="Ignore Start-Level (Transmitting)" size="1" type="list" value="1">
|
||||
<Help>Dimmers controlled by this switch will start dimming from their current level.</Help>
|
||||
<Item label="No" value="0"/>
|
||||
<Item label="Yes" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="2" label="Suspend Group 4" size="1" type="list" value="0">
|
||||
<Help>Disable transmitting commands to Z-Wave devices that are in Group 4 without disassociating those devices from the group.</Help>
|
||||
<Item label="No" value="0"/>
|
||||
<Item label="Yes" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="3" label="Night Light" size="1" type="list" value="0">
|
||||
<Help>In night-light mode the LED on the switch will turn ON when the switch is turned OFF.</Help>
|
||||
<Item label="No" value="0"/>
|
||||
<Item label="Yes" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="4" label="Invert Switch" size="1" type="list" value="0">
|
||||
<Help>Change the top of the switch to OFF and the bottom of the switch to ON. Note: If you invert the switches and also install the product upside down, remember the load will now be controlled by the right, not the left switch.</Help>
|
||||
<Item label="No" value="0"/>
|
||||
<Item label="Yes" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="5" label="Ignore Start-Level (Receiving)" size="1" type="list" value="1">
|
||||
<Help>This dimmer will start dimming from its current level.</Help>
|
||||
<Item label="No" value="0"/>
|
||||
<Item label="Yes" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="6" label="Don't Send Level After Dim" size="1" type="list" value="1">
|
||||
<Help>When you press and hold the bottom of the ZDM230 switch once, the Z-Wave devices that are associated into Group 1 are sent the Dim command. If this parameter is set to "Yes" the devices in Group 1 will not go to the same level as the ZDM230.</Help>
|
||||
<Item label="No" value="0"/>
|
||||
<Item label="Yes" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="7" label="On/Off Command Dim Step" max="99" min="1" type="byte" units="" value="1">
|
||||
<Help>Indicates how many levels the dimmer will change for each dimming step.</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="8" label="On/Off Command Dim Rate" max="255" min="1" type="byte" units="x 10 milliseconds" value="3">
|
||||
<Help>This value indicates in 10 millisecond resolution, how often the dim level will change. For example, if you set this parameter to 1, then every 10ms the dim level will change. If you set it to 255, then every 2.55 seconds the dim level will change.</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="9" label="Local Control Dim Step" max="99" min="1" type="byte" units="" value="1">
|
||||
<Help>Indicates how many levels the dimmer will change for each dimming step.</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="10" label="Local Control Dim Rate" max="255" min="1" type="byte" units="x 10 milliseconds" value="3">
|
||||
<Help>This value indicates in 10 millisecond resolution, how often the dim level will change. For example, if you set this parameter to 1, then every 10ms the dim level will change. If you set it to 255, then every 2.55 seconds the dim level will change.</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="11" label="ALL ON/ALL OFF Dim Step" max="99" min="1" type="byte" units="" value="1">
|
||||
<Help>Indicates how many levels the dimmer will change for each dimming step.</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="12" label="ALL ON/ALL OFF Dim Rate" max="255" min="1" type="byte" units="x 10 milliseconds" value="3">
|
||||
<Help>This value indicates in 10 millisecond resolution, how often the dim level will change. For example, if you set this parameter to 1, then every 10ms the dim level will change. If you set it to 255, then every 2.55 seconds the dim level will change.</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="13" label="Disable Group 4 During Dim" size="1" type="list">
|
||||
<Help>Units in Group 4 only track when the dimmer is being turned ON and OFF and not while dimming.</Help>
|
||||
<Item label="No" value="0"/>
|
||||
<Item label="Yes" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="14" label="Enable Shade Control Group 2" size="1" type="list" value="0">
|
||||
<Help>The ZDM230 can operate shade control devices via its group 2.</Help>
|
||||
<Item label="No" value="0"/>
|
||||
<Item label="Yes" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="15" label="Enable Shade Control Group 3" size="1" type="list" value="0">
|
||||
<Help>The ZDM230 can operate shade control devices via its group 3.</Help>
|
||||
<Item label="No" value="0"/>
|
||||
<Item label="Yes" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="19" label="LED Transmission Indication" size="1" type="list" value="2">
|
||||
<Help>The ZDM230 will flicker its LED when it is transmitting to any of its 4 groups. This flickering can be set to not flicker at all, to flicker the entire time it is transmitting, or to flicker for only 1 second when it begins transmitting.</Help>
|
||||
<Item label="None" value="0"/>
|
||||
<Item label="While Transmitting" value="1"/>
|
||||
<Item label="One Second Maximum" value="2"/>
|
||||
</Value>
|
||||
<Value genre="config" index="20" label="Poll Group 2 Interval" max="255" min="1" type="byte" units="minutes" value="2">
|
||||
<Help>Poll Group 2 Interval</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="22" label="Enable Group 2 Polling" size="1" type="list">
|
||||
<Help>Poll Group 2</Help>
|
||||
<Item label="No" value="0"/>
|
||||
<Item label="Yes" value="1"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="4">
|
||||
<Group index="1" label="Left Switch" max_associations="5"/>
|
||||
<Group index="2" label="Right Switch" max_associations="5"/>
|
||||
<Group index="3" label="Right Switch (2 Taps)" max_associations="5"/>
|
||||
<Group auto="true" index="4" label="Update Controller" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
21
config/act/zdp100.xml
Normal file
21
config/act/zdp100.xml
Normal file
|
@ -0,0 +1,21 @@
|
|||
<Product Revision="1" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0001:3030:4450</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/act/zdp100.png</MetaDataItem>
|
||||
<MetaDataItem id="3030" name="ZWProductPage" type="4450">https://products.z-wavealliance.org/products/154/</MetaDataItem>
|
||||
<MetaDataItem id="3030" name="FrequencyName" type="4450">U.S. / Canada / Mexico</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://www.act-solutions.com/HomePro-Product-Matrix.html#Euro</MetaDataItem>
|
||||
<MetaDataItem name="Description">Provides wireless dimming of lights 300 watt max Incandescent Only
|
||||
- Includes a 3 prong pass through outlet.
|
||||
- Lamp outlet is 2 prong.
|
||||
- Supports load sensing. If the attached lamp is turned on manually, the module will detect the load change and turn itself on. This allows lamps to operated manually or through automation.
|
||||
- Programmable ramp rates. Supports different ramp rates when controlled locally, or remotely. ON/OFF control of lights connected to the Plug-In Lamp Module.
|
||||
- Plugs directly into wall outlet and provides a switched 120 VAC source.</MetaDataItem>
|
||||
<MetaDataItem name="Name">ZDP100 - Scene Capable Dimmer Module</MetaDataItem>
|
||||
<MetaDataItem id="3030" name="Identifier" type="4450">ZDP100</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="1">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/154/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<CommandClass id="112"/>
|
||||
</Product>
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="2">
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="1" genre="config" label="Ignore Start-Level (Transmitting)" size="1" value="1">
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="3">
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="1" genre="config" label="Set Ignore Start Level Bit When Transmitting Dim Commands" size="1" value="1">
|
||||
|
|
|
@ -1,9 +1,23 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="17" genre="config" label="Mode" value="0" size="1">
|
||||
<Help>
|
||||
<Product Revision="5" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0001:3330:4952</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/act/zir010.png</MetaDataItem>
|
||||
<MetaDataItem id="3330" name="ZWProductPage" type="4952">https://products.z-wavealliance.org/products/549/</MetaDataItem>
|
||||
<MetaDataItem id="3330" name="FrequencyName" type="4952">U.S. / Canada / Mexico</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://www.act-solutions.com/HomePro-Product-Matrix.html#Euro</MetaDataItem>
|
||||
<MetaDataItem name="Name">ZIR000</MetaDataItem>
|
||||
<MetaDataItem name="Description">PIR Sensor</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="4">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/549/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="5">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/550/xml</Entry>
|
||||
</ChangeLog>
|
||||
<MetaDataItem id="3030" name="ZWProductPage" type="4952">https://products.z-wavealliance.org/products/550/</MetaDataItem>
|
||||
<MetaDataItem id="3030" name="FrequencyName" type="4952">U.S. / Canada / Mexico</MetaDataItem>
|
||||
</MetaData>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="17" label="Mode" size="1" type="list" value="0">
|
||||
<Help>
|
||||
The ZIR010 can be configured to operate in 1 of 3 modes.
|
||||
Those modes are:
|
||||
Lighting Mode (factory default)
|
||||
|
@ -13,51 +27,49 @@
|
|||
For Lighting Mode: Send a value of 0 to Configuration Parameter #17.
|
||||
For Alarm Mode: Send a value of 1 to Configuration Parameter #17.
|
||||
For Sensor Mode: Send a value of 2 to Configuration Parameter # 17.
|
||||
Information reproduced from: http://www.pepper1.net/zwavedb/uploads/resources/bdf086a9388325a2fb8b8aa298e24e512faec65d.pdf
|
||||
</Help>
|
||||
<Item label="Lighting" value="0" />
|
||||
<Item label="Alarm" value="1" />
|
||||
<Item label="Sensor" value="2" />
|
||||
</Value>
|
||||
<Value type="byte" index="18" genre="config" label="Off/Idle Delay" units="minutes" min="0" max="255" value="1">
|
||||
<Help>
|
||||
<Item label="Lighting" value="0"/>
|
||||
<Item label="Alarm" value="1"/>
|
||||
<Item label="Sensor" value="2"/>
|
||||
</Value>
|
||||
<Value genre="config" index="18" label="Off/Idle Delay" max="255" min="0" type="byte" units="minutes" value="1">
|
||||
<Help>
|
||||
The configuration parameter that can be used to adjust the amount of delay before the OFF or IDLE command is transmitted is Configuration Parameter # 18.
|
||||
This parameter can be configured with the value of 0 through 255.
|
||||
Where 0 means no delay and 255 means 255 minutes of delay.
|
||||
Default appears to be 1 min.
|
||||
Information reproduced from: http://www.pepper1.net/zwavedb/uploads/resources/bdf086a9388325a2fb8b8aa298e24e512faec65d.pdf
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" index="19" genre="config" label="Unsolicited Commands" value="1" size="1">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="19" label="Unsolicited Commands" size="1" type="list" value="1">
|
||||
<Help>
|
||||
The ZIR010 can be disabled from sending commands unsolicited without removing associated devices by
|
||||
setting Configuration Parameter # 19 to 0 (when asked for number of bytes, select 1).
|
||||
Setting it back to 1 will re-enable the ZIR010.
|
||||
Information reproduced from: http://www.pepper1.net/zwavedb/uploads/resources/bdf086a9388325a2fb8b8aa298e24e512faec65d.pdf
|
||||
</Help>
|
||||
<Item label="No" value="0" />
|
||||
<Item label="Yes" value="1" />
|
||||
</Value>
|
||||
<Value type="byte" index="22" genre="config" label="Awake Time" units="seconds" min="15" max="45" value="30">
|
||||
<Help>
|
||||
<Item label="No" value="0"/>
|
||||
<Item label="Yes" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="22" label="Awake Time" max="45" min="15" type="byte" units="seconds" value="30">
|
||||
<Help>
|
||||
The time the ZIR010 stays awake can be adjusted from 15 seconds to 45 seconds by sending a value of 15
|
||||
to 45 to the ZIR010 using Configuration Parameter # 22 (when asked for the number of bytes, select 1).
|
||||
This awake time period starts over every time the ZIR010 receives a command or request.
|
||||
Defaults to 30 seconds.
|
||||
Information reproduced from: http://www.pepper1.net/zwavedb/uploads/resources/bdf086a9388325a2fb8b8aa298e24e512faec65d.pdf
|
||||
</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
|
||||
<!-- Basic set as report -->
|
||||
<CommandClass id="32" setasreport="true"/>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="3">
|
||||
<Group index="1" max_associations="5" label="Motion" />
|
||||
<Group index="2" max_associations="5" label="Tamper" auto="true" />
|
||||
<Group index="3" max_associations="5" label="Battery" auto="true" />
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Basic set as report -->
|
||||
<CommandClass id="32">
|
||||
<Compatibility>
|
||||
<SetAsReport>true</SetAsReport>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="3">
|
||||
<Group index="1" label="Motion" max_associations="5"/>
|
||||
<Group auto="true" index="2" label="Tamper" max_associations="5"/>
|
||||
<Group auto="true" index="3" label="Battery" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
||||
|
|
25
config/act/zrm230.xml
Normal file
25
config/act/zrm230.xml
Normal file
|
@ -0,0 +1,25 @@
|
|||
<Product Revision="1" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0001:3330:524D</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/act/zrm230.png</MetaDataItem>
|
||||
<MetaDataItem id="3330" name="ZWProductPage" type="524D">https://products.z-wavealliance.org/products/476/</MetaDataItem>
|
||||
<MetaDataItem name="Description">The ZRM230 is a 6A, 230 VAC, 50 Hz, RF wall switch with 3-way capability. This wall switch can be controlled manually, with the ZTH200
|
||||
Z-Wave RF Remote Control, or the ACT multilevel auxiliary switch (AS200). This will control loads ON and OFF up to and inclduing 6A.
|
||||
|
||||
The ZRM230 is a Dual Paddle design, where the first switch controls the connected load and also serves as a transmitter by using multiple switch taps (controls one group of 5 Z-Wave modules), and the second paddle is a transmitter only (controls two groups of 5 Z-Wave modules).
|
||||
|
||||
Replaces the existing wall switch, and can add 3-way capability.
|
||||
|
||||
Each ZRM230 Wall Mounted Switch functions as an automatic repeater to other HomePro Modules to ensure full home coverage of the RF signal.
|
||||
|
||||
Has automatic Static Update Controller (SUC) capability</MetaDataItem>
|
||||
<MetaDataItem id="3330" name="FrequencyName" type="524D">CEPT (Europe)</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://www.act-solutions.com/HomePro-Product-Matrix.html#Euro</MetaDataItem>
|
||||
<MetaDataItem name="Name">ZRM230 - Wall Mounted 3-Way Switch 2-Gang</MetaDataItem>
|
||||
<MetaDataItem id="3330" name="Identifier" type="524D">ZRM230</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="1">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/476/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<CommandClass id="112"/>
|
||||
</Product>
|
23
config/act/zrp100.xml
Normal file
23
config/act/zrp100.xml
Normal file
|
@ -0,0 +1,23 @@
|
|||
<Product Revision="3" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0001:3030:5250</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/act/zrp100.png</MetaDataItem>
|
||||
<MetaDataItem id="3030" name="ZWProductPage" type="5250">https://products.z-wavealliance.org/products/357/</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://www.act-solutions.com/HomePro-Product-Matrix.html#Euro</MetaDataItem>
|
||||
<MetaDataItem name="Name">ZRP100 (V3.30)</MetaDataItem>
|
||||
<MetaDataItem name="Description">US Plug In Relay• Provides wireless ON/OFF control of lamps and other electrical appliances connected to the Plug-In Appliance Module.
|
||||
• The wall hugging design plugs into a wall outlet and provides a grounded switched 120 VAC outlet on one side and a grounded pass thru "always powered" 120 VAC outlet on the other. Controlled outlet also has sense feature that turns it on when load is turned on.
|
||||
• Each Plug-In Appliance Module functions as automatic repeater to other HomePro Modules to ensure full home coverage.
|
||||
• Can request updates from a designated Static Update Controller (SUC). A Static Controller is one that is not moved after its addition to the network. The Static Controller can act as a gateway in the system, since other nodes always know its position. The “always listening” advantage of the Static Controller is that other nodes can transmit information frames to it whenever needed.
|
||||
</MetaDataItem>
|
||||
<MetaDataItem id="3030" name="Identifier" type="5250">ZRP100</MetaDataItem>
|
||||
<MetaDataItem name="ProductSupport">http://www.act-remote.com/HPW/Specs/ZRP100-S200_spec.pdf</MetaDataItem>
|
||||
<MetaDataItem id="3030" name="FrequencyName" type="5250">U.S. / Canada / Mexico</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="1">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/152/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="2">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/194/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="3">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/357/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<CommandClass id="112"/>
|
||||
</Product>
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="1">
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="bool" index="29" genre="config" label="Load Sense" units="" min="0" max="1" />
|
||||
|
|
|
@ -1,36 +1,57 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="1" genre="config" label="Ignore Start-Level (Transmitting)" size="1" value="1">
|
||||
<Help>Dimmers controlled by this switch will start dimming from their current level.</Help>
|
||||
<Item label="No" value="0" />
|
||||
<Item label="Yes" value="1" />
|
||||
</Value>
|
||||
<Value type="list" index="3" genre="config" label="Night Light" size="1" value="0">
|
||||
<Help>In night-light mode the LED on the switch will turn ON when the switch is turned OFF.</Help>
|
||||
<Item label="No" value="0" />
|
||||
<Item label="Yes" value="1" />
|
||||
</Value>
|
||||
<Value type="list" index="4" genre="config" label="Invert Switch" size="1" value="0">
|
||||
<Help>Change the top of the switch to OFF and the bottom of the switch to ON.</Help>
|
||||
<Item label="No" value="0" />
|
||||
<Item label="Yes" value="1" />
|
||||
</Value>
|
||||
<Value type="list" index="19" genre="config" label="LED Transmission Indication" size="1" value="2">
|
||||
<Help>The ZRW103 will flicker its LED when it is transmitting to any of its 4 groups. This flickering can be set to not flicker at all, to flicker the entire time it is transmitting, or to flicker for only 1 second when it begins transmitting.</Help>
|
||||
<Item label="None" value="0" />
|
||||
<Item label="While Transmitting" value="1" />
|
||||
<Item label="One Second Maximum" value="2" />
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<Product Revision="3" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0001:3033:5257</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/act/zrw103.png</MetaDataItem>
|
||||
<MetaDataItem id="3033" name="ZWProductPage" type="5257">https://products.z-wavealliance.org/products/413/</MetaDataItem>
|
||||
<MetaDataItem name="Description">US Wall Switch Relay 20A - 200 upt.Provides wireless RF ON/OFF (or manual) control of any light or lamp connected.
|
||||
• Can control two groups of 5 modules each independent of its own state.
|
||||
• Can replace current wall switch and can add 3-way or 4-way capability.
|
||||
• Each ZRW103 Wall Mounted Switch functions as an automatic repeater to other Z-Wave Modules to ensure full home coverage of the RF signal.
|
||||
•
|
||||
Supports the Powerlevel command
|
||||
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="3">
|
||||
<Group index="1" max_associations="5" label="Group 1" />
|
||||
<Group index="2" max_associations="5" label="Group 2 (two taps)" />
|
||||
<Group index="3" max_associations="5" label="Group 3 (three taps)" />
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
Has automatic Static Update Controller (SUC) capability.
|
||||
This product supports 40Kbps data transmission. This product can also be used for networking support in systems that stream metadata. An example might include transmission of information from audio devices such as song album information to various displays around the home.
|
||||
</MetaDataItem>
|
||||
<MetaDataItem id="3033" name="FrequencyName" type="5257">U.S. / Canada / Mexico</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://www.act-solutions.com/HomePro-Product-Matrix.html#top</MetaDataItem>
|
||||
<MetaDataItem name="ProductSupport">http://www.act-solutions.com/Contact-Advanced-Control-Technologies.html</MetaDataItem>
|
||||
<MetaDataItem id="3033" name="Identifier" type="5257">ZRW103</MetaDataItem>
|
||||
<MetaDataItem name="Name">ZRW103</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="3">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/413/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="1" label="Ignore Start-Level (Transmitting)" size="1" type="list" value="1">
|
||||
<Help>Dimmers controlled by this switch will start dimming from their current level.</Help>
|
||||
<Item label="No" value="0"/>
|
||||
<Item label="Yes" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="3" label="Night Light" size="1" type="list" value="0">
|
||||
<Help>In night-light mode the LED on the switch will turn ON when the switch is turned OFF.</Help>
|
||||
<Item label="No" value="0"/>
|
||||
<Item label="Yes" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="4" label="Invert Switch" size="1" type="list" value="0">
|
||||
<Help>Change the top of the switch to OFF and the bottom of the switch to ON.</Help>
|
||||
<Item label="No" value="0"/>
|
||||
<Item label="Yes" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="19" label="LED Transmission Indication" size="1" type="list" value="2">
|
||||
<Help>The ZRW103 will flicker its LED when it is transmitting to any of its 4 groups. This flickering can be set to not flicker at all, to flicker the entire time it is transmitting, or to flicker for only 1 second when it begins transmitting.</Help>
|
||||
<Item label="None" value="0"/>
|
||||
<Item label="While Transmitting" value="1"/>
|
||||
<Item label="One Second Maximum" value="2"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="3">
|
||||
<Group index="1" label="Group 1" max_associations="5"/>
|
||||
<Group index="2" label="Group 2 (two taps)" max_associations="5"/>
|
||||
<Group index="3" label="Group 3 (three taps)" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
25
config/act/zrw230.xml
Normal file
25
config/act/zrw230.xml
Normal file
|
@ -0,0 +1,25 @@
|
|||
<Product Revision="1" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0001:3330:5257</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/act/zrw230.png</MetaDataItem>
|
||||
<MetaDataItem id="3330" name="ZWProductPage" type="5257">https://products.z-wavealliance.org/products/475/</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://www.act-solutions.com/HomePro-Product-Matrix.html#Euro</MetaDataItem>
|
||||
<MetaDataItem id="3330" name="FrequencyName" type="5257">CEPT (Europe)</MetaDataItem>
|
||||
<MetaDataItem name="Name">ZRW230 - European Wall Mounted 1-Gang</MetaDataItem>
|
||||
<MetaDataItem name="Description">The ZRW230 is a 6A, 230 VAC, 50 Hz, RF wall switch with 3-way capability.
|
||||
|
||||
This wall switch can be controlled manually, with the ZTH200 RF Remote Control, or the ACT multilevel auxiliary switch (AS200). These will turn loads ON and OFF up to and including 6A.
|
||||
The ON/OFF status will also be indicated by the state of its LED. The ZRW230 is a single paddle design which controls the connected load and serves as a transmitter using multiple button taps.
|
||||
|
||||
Replaces the current wall switch, and can add 3-way capability.
|
||||
|
||||
Each ZRW230 Wall Mounted Switch functions as an automatic repeater to other HomePro Modules to ensure full home coverage of the RF signal.
|
||||
|
||||
Has automatic Static Update Controller (SUC) capability.</MetaDataItem>
|
||||
<MetaDataItem id="3330" name="Identifier" type="5257">ZRW230</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="1">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/475/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<CommandClass id="112"/>
|
||||
</Product>
|
|
@ -1,80 +1,92 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
<Product Revision="4" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0086:0003:0001</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/aeotec/dsa03202.png</MetaDataItem>
|
||||
<MetaDataItem id="0003" name="ZWProductPage" type="0001">https://products.z-wavealliance.org/products/143/</MetaDataItem>
|
||||
<MetaDataItem name="Description">Minimote Z-wave Remote Controller.The Aeon Labs Minimote is low-cost remote controller focused on end-user ease of use.
|
||||
|
||||
Although simplicity and user experience is the primary focus, the full range of Z-Wave remote controller capabilities are left intact for the advanced user. Network installation is vastly improved via the interface. The Minimote is upgradeable by the end-user such that the latest Z-Wave protocols are always available. An internal lithium battery allows for months of usage and is recharged via USB.</MetaDataItem>
|
||||
<MetaDataItem id="0003" name="FrequencyName" type="0001">CEPT (Europe) / U.S. / Canada / Mexico</MetaDataItem>
|
||||
<MetaDataItem name="Name">Aeon Labs Minimote US</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://www.aeon-labs.com/site/products/view/3/</MetaDataItem>
|
||||
<MetaDataItem id="0003" name="Identifier" type="0001">DSA03xxx-ZWUS v1.13</MetaDataItem>
|
||||
<MetaDataItem name="ProductSupport">http://www.aeon-labs.com/site/support/</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="3">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/142/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="4">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/143/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<!--
|
||||
Aeotec DSA03202 Minimote
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584532
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Minimote requires at least firmware 1.17, 1.19 is highly recommend -->
|
||||
<!-- Minimote will normally not respond to Get commands, but Set is possible when woken up -->
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
|
||||
<Value type="list" instance="1" index="241" genre="config" label="Button #1 Programmable" value="0" min="0" max="5" size="1" write_only="true">
|
||||
<Value genre="config" index="241" instance="1" label="Button #1 Programmable" max="5" min="0" size="1" type="list" value="0" write_only="true">
|
||||
<Help>Default Mode 0 The button on the Minimote uses the factory default functions for operation instead of any special functionality related to the below modes. Scene Mode 1 The button on the Minimote executes a scene from data received for Parameters Numbers 0-239 related to the button being pressed. Add Mode 2 The button on the Minimote is able to include/add devices into the Z-Wave network. Remove Mode 3 The button on the Minimote is able to remove devices from the Z-Wave network. Association Mode 4 The button on the Minimote is able to associate one device to another. Learn Mode 5 The button on the Minimote is able to allow the Minimote to be included into other Z-Wave networks and to learn Z-Wave network information.</Help>
|
||||
<Item label="Default Mode" value="0" />
|
||||
<Item label="Scene Mode" value="1" />
|
||||
<Item label="Add Mode" value="2" />
|
||||
<Item label="Remove Mode" value="3" />
|
||||
<Item label="Association Mode" value="4" />
|
||||
<Item label="Learn Mode" value="5" />
|
||||
<Item label="Default Mode" value="0"/>
|
||||
<Item label="Scene Mode" value="1"/>
|
||||
<Item label="Add Mode" value="2"/>
|
||||
<Item label="Remove Mode" value="3"/>
|
||||
<Item label="Association Mode" value="4"/>
|
||||
<Item label="Learn Mode" value="5"/>
|
||||
</Value>
|
||||
|
||||
<Value type="list" instance="1" index="242" genre="config" label="Button #2 Programmable" value="0" min="0" max="5" size="1" write_only="true">
|
||||
<Item label="Default Mode" value="0" />
|
||||
<Item label="Scene Mode" value="1" />
|
||||
<Item label="Add Mode" value="2" />
|
||||
<Item label="Remove Mode" value="3" />
|
||||
<Item label="Association Mode" value="4" />
|
||||
<Item label="Learn Mode" value="5" />
|
||||
<Value genre="config" index="242" instance="1" label="Button #2 Programmable" max="5" min="0" size="1" type="list" value="0" write_only="true">
|
||||
<Item label="Default Mode" value="0"/>
|
||||
<Item label="Scene Mode" value="1"/>
|
||||
<Item label="Add Mode" value="2"/>
|
||||
<Item label="Remove Mode" value="3"/>
|
||||
<Item label="Association Mode" value="4"/>
|
||||
<Item label="Learn Mode" value="5"/>
|
||||
</Value>
|
||||
|
||||
<Value type="list" instance="1" index="243" genre="config" label="Button #3 Programmable" value="0" min="0" max="5" size="1" write_only="true">
|
||||
<Item label="Default Mode" value="0" />
|
||||
<Item label="Scene Mode" value="1" />
|
||||
<Item label="Add Mode" value="2" />
|
||||
<Item label="Remove Mode" value="3" />
|
||||
<Item label="Association Mode" value="4" />
|
||||
<Item label="Learn Mode" value="5" />
|
||||
<Value genre="config" index="243" instance="1" label="Button #3 Programmable" max="5" min="0" size="1" type="list" value="0" write_only="true">
|
||||
<Item label="Default Mode" value="0"/>
|
||||
<Item label="Scene Mode" value="1"/>
|
||||
<Item label="Add Mode" value="2"/>
|
||||
<Item label="Remove Mode" value="3"/>
|
||||
<Item label="Association Mode" value="4"/>
|
||||
<Item label="Learn Mode" value="5"/>
|
||||
</Value>
|
||||
|
||||
<Value type="list" instance="1" index="244" genre="config" label="Button #4 Programmable" value="0" min="0" max="5" size="1" write_only="true">
|
||||
<Item label="Default Mode" value="0" />
|
||||
<Item label="Scene Mode" value="1" />
|
||||
<Item label="Add Mode" value="2" />
|
||||
<Item label="Remove Mode" value="3" />
|
||||
<Item label="Association Mode" value="4" />
|
||||
<Item label="Learn Mode" value="5" />
|
||||
<Value genre="config" index="244" instance="1" label="Button #4 Programmable" max="5" min="0" size="1" type="list" value="0" write_only="true">
|
||||
<Item label="Default Mode" value="0"/>
|
||||
<Item label="Scene Mode" value="1"/>
|
||||
<Item label="Add Mode" value="2"/>
|
||||
<Item label="Remove Mode" value="3"/>
|
||||
<Item label="Association Mode" value="4"/>
|
||||
<Item label="Learn Mode" value="5"/>
|
||||
</Value>
|
||||
|
||||
<Value type="list" index="250" genre="config" label="Mode" units="" min="0" max="1" size="1" value="0">
|
||||
<Value genre="config" index="250" label="Mode" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
Enable selective Group Mode or Scene Mode when Button is in Use.
|
||||
NOTE: Minimote firmware 1.17 or higher is required, firmware 1.19 is highly recommended.</Help>
|
||||
<Item label="Group" value="0" />
|
||||
<Item label="Scene" value="1" />
|
||||
<Item label="Group" value="0"/>
|
||||
<Item label="Scene" value="1"/>
|
||||
</Value>
|
||||
|
||||
</CommandClass>
|
||||
|
||||
<!-- COMMAND_CLASS_SWITCH_MULTILEVEL. This class isn't supported by the Minimote -->
|
||||
<CommandClass id="38" action="remove" />
|
||||
|
||||
<CommandClass action="remove" id="38"/>
|
||||
<!-- COMMAND_CLASS_WAKE_UP. This class is in the list reported by the Minimote, but it does not
|
||||
respond to requests. It still needs to be supported so that wake up notifications are handled. -->
|
||||
<CommandClass id="132" create_vars="false" />
|
||||
|
||||
<CommandClass id="132">
|
||||
<Compatibility>
|
||||
<CreateVars>false</CreateVars>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- COMMAND_CLASS_ASSOCIATION. This class is in the list reported by the Minimote, but it does not respond to requests -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="4">
|
||||
<Group index="1" max_associations="5" label="Button #1" auto="false" />
|
||||
<Group index="2" max_associations="5" label="Button #2" />
|
||||
<Group index="3" max_associations="5" label="Button #3" />
|
||||
<Group index="4" max_associations="5" label="Button #4" />
|
||||
<Group auto="false" index="1" label="Button #1" max_associations="5"/>
|
||||
<Group index="2" label="Button #2" max_associations="5"/>
|
||||
<Group index="3" label="Button #3" max_associations="5"/>
|
||||
<Group index="4" label="Button #4" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
|
||||
<!-- COMMAND_CLASS_ASSOCIATION_COMMAND_CONFIGURATION. This class is supported but is missing from the list reported by the Minimote -->
|
||||
<CommandClass id="155" action="add" create_vars="false" />
|
||||
|
||||
<CommandClass action="add" id="155">
|
||||
<Compatibility>
|
||||
<CreateVars>false</CreateVars>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
Aeotec DSA22 Key Fob
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584531
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="1">
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="int" index="0" genre="config" label="Button #1(tap) Value 1" units="" write_only="true" value="0"/>
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="1">
|
||||
<!--
|
||||
Aeon Labs Panic Button Gen5
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584530
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Basic and SwitchMultiLevel are for when the KeyFob is in Group Mode.
|
||||
You should configure the device to operate in Scene Mode instead if you
|
||||
wish to integrate it with your application -->
|
||||
|
|
|
@ -1,46 +1,62 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
<!-- Aeon Labs Door/Window Sensor --><Product Revision="3" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0086:0004:0002</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/aeotec/dsb04100.png</MetaDataItem>
|
||||
<MetaDataItem id="0004" name="ZWProductPage" type="0002">https://products.z-wavealliance.org/products/114/</MetaDataItem>
|
||||
<MetaDataItem name="Description">The Aeon Labs Door/Window Sensor is a battery-powered Z-Wave magnetic door/window sensor with an extremely small form factor. The D/W sensor will send radio signals up to 6 associated Z-Wave devices within its own Z-Wave network when the main unit separates from the smaller unit.
|
||||
|
||||
Bidirectional mounting plate and push button allows for easy end-user installation. The Aeon Labs Door/Window Sensor also has tamper prevention capabilities and low-battery alerts.</MetaDataItem>
|
||||
<MetaDataItem id="0004" name="FrequencyName" type="0002">U.S. / Canada / Mexico</MetaDataItem>
|
||||
<MetaDataItem name="ProductSupport">http://www.aeon-labs.com/site/support/</MetaDataItem>
|
||||
<MetaDataItem id="0004" name="Identifier" type="0002">DSB04100-ZWUS</MetaDataItem>
|
||||
<MetaDataItem name="Name">Aeon Labs Door/Window Sensor</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://www.aeon-labs.com/site/products/view/1/</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="3">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/114/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<!--
|
||||
Aeotec Door/Window Sensor
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584514
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" genre="config" instance="1" index="1" label="Toggle the sensor binary report value when the Magnet switch is opened/closed." min="0" max="1" value="0" size="1">
|
||||
<Help>Default setting: Open: FF, Close: 00</Help>
|
||||
<Item label="Open: FF, Close: 00" value="0"/>
|
||||
<Item label="Open: 00, Close: FF" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="2" label="Enable wake up 10 minutes when the power is switched on." min="0" max="1" value="0" size="1">
|
||||
<Help>Default setting: Disable</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="3" label="Toggle the basic set value when Magnet switch is opened/closed." min="0" max="1" value="0" size="1">
|
||||
<Help>Default setting: Open: FF, Close: 00</Help>
|
||||
<Item label="Open: FF, Close: 00" value="0"/>
|
||||
<Item label="Open: 00, Close: FF" value="1"/>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="121" label="Determines which report will be sent when Magnet switch is opened/ closed." min="0" max="65535" value="255" size="4">
|
||||
<Help>Which reports need to send automatically in timing intervals for group 1. Bitsets: 0->Battery report, 4->Sensor Binary, 8->Basic Set, Default setting: 0x00000100 (Basic Set)
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="1" instance="1" label="Toggle the sensor binary report value when the Magnet switch is opened/closed." max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Default setting: Open: FF, Close: 00</Help>
|
||||
<Item label="Open: FF, Close: 00" value="0"/>
|
||||
<Item label="Open: 00, Close: FF" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="2" instance="1" label="Enable wake up 10 minutes when the power is switched on." max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Default setting: Disable</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="3" instance="1" label="Toggle the basic set value when Magnet switch is opened/closed." max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Default setting: Open: FF, Close: 00</Help>
|
||||
<Item label="Open: FF, Close: 00" value="0"/>
|
||||
<Item label="Open: 00, Close: FF" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="121" instance="1" label="Determines which report will be sent when Magnet switch is opened/ closed." max="65535" min="0" size="4" type="int" value="255">
|
||||
<Help>Which reports need to send automatically in timing intervals for group 1. Bitsets: 0->Battery report, 4->Sensor Binary, 8->Basic Set, Default setting: 0x00000100 (Basic Set)
|
||||
Ideal Setting for OZW is 17 (Sensor Binary and Battery Report)</Help>
|
||||
</Value>
|
||||
<Value type="short" index="254" genre="config" label="Device Tag" units="" min="0" max="255" value="0">
|
||||
<Help>Device Tag</Help>
|
||||
</Value>
|
||||
<Value type="button" index="255" genre="config" label="Reset configuration settings to factory defaults" write_only="true" value="0" >
|
||||
<Help>Reset to factory defaults.</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
|
||||
<!-- Basic set as report -->
|
||||
<CommandClass id="32" setasreport="true"/>
|
||||
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="6" label="Lifeline" />
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
|
||||
</Value>
|
||||
<Value genre="config" index="254" label="Device Tag" max="255" min="0" type="short" units="" value="0">
|
||||
<Help>Device Tag</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="255" label="Reset configuration settings to factory defaults" type="button" value="0" write_only="true">
|
||||
<Help>Reset to factory defaults.</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Basic set as report -->
|
||||
<CommandClass id="32">
|
||||
<Compatibility>
|
||||
<SetAsReport>true</SetAsReport>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" label="Lifeline" max_associations="6"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -1,66 +1,83 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
<!-- Aeon Labs Multi Sensor --><Product Revision="5" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0086:0005:0002</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/aeotec/dsb05.png</MetaDataItem>
|
||||
<MetaDataItem id="0005" name="ZWProductPage" type="0002">https://products.z-wavealliance.org/products/771/</MetaDataItem>
|
||||
<MetaDataItem id="0005" name="Identifier" type="0002">DSB05-ZWAU</MetaDataItem>
|
||||
<MetaDataItem name="Name">Multisensor</MetaDataItem>
|
||||
<MetaDataItem name="Description">Never before has one device made a single corner of your room so smart. Never before has it done it inside. Never before has it done it outside. And never before has it brought all that intelligence to your Z-Wave network.
|
||||
|
||||
The Aeotec by Aeon Labs MultiSensor looks like a motion sensor and acts like one too. But it’s also so much more. Placing this one piece of Z-Wave technology either in the corner of a room or outside is the same as placing 4 pieces of Z-Wave technology. But those 4 pieces of technology, those 4 pieces of intelligence that you can bring to your Z-Wave network, all live within a single, stunning sensor.</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://aeotec.com/z-wave-sensor</MetaDataItem>
|
||||
<MetaDataItem id="0005" name="FrequencyName" type="0002">U.S. / Canada / Mexico / CEPT (Europe) / Australia / New Zealand</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="3">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/710/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="4">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/763/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="5">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/771/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<!--
|
||||
Aeotec DSB05 Multisensor
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584510
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="2" genre="config" label="Wake up 10 minutes when batteries are inserted" min="0" max="1" value="0" size="1">
|
||||
<Help>Stay awake for 10 minutes after batteries are inserted</Help>
|
||||
<Item label="No" value="0" />
|
||||
<Item label="Yes" value="1" />
|
||||
</Value>
|
||||
<Value type="short" index="3" genre="config" label="On time" units="seconds" min="1" max="15300" value="240">
|
||||
<Help>How long should the device associated to multi sensor keep state On before sending it Off command (if the value is bigger than 255, the value would be rounded to next integer in minutes)</Help>
|
||||
</Value>
|
||||
<Value type="list" index="4" genre="config" label="Enable Motion Sensor" min="0" max="1" value="1" size="1">
|
||||
<Help>Enable Motion Sensor</Help>
|
||||
<Item label="Disabled" value="0" />
|
||||
<Item label="Enabled" value="1" />
|
||||
</Value>
|
||||
<Value type="list" index="5" genre="config" label="Command Options" min="1" max="2" value="1" size="1">
|
||||
<Help>Which commands to send when PIR motion sensor triggered</Help>
|
||||
<Item label="Basic Set (default)" value="1" />
|
||||
<Item label="Binary Sensor Report" value="2" />
|
||||
</Value>
|
||||
<Value type="int" index="100" genre="config" label="Reset #101-103" value="0" write_only="true" affects="101,102,103">
|
||||
<Help>Reset to default parameters number 101-103. Any value other then 0 will initiate this reset.</Help>
|
||||
</Value>
|
||||
<Value type="int" index="101" genre="config" label="Group 1 Reports" units="" value="0">
|
||||
<Help>Which reports need to send automatically in timing intervals for group 1. Bitsets: 0 -> Battery report, 5 -> Temperature, 6 -> Humidity, 7 -> Luminosity</Help>
|
||||
</Value>
|
||||
<Value type="int" index="102" genre="config" label="Group 2 Reports" value="0">
|
||||
<Help>Which reports need to send automatically in timing intervals for group 2. Bitsets: 0 -> Battery report, 5 -> Temperature, 6 -> Humidity, 7 -> Luminosity</Help>
|
||||
</Value>
|
||||
<Value type="int" index="103" genre="config" label="Group 3 Reports" value="0">
|
||||
<Help>Which reports need to send automatically in timing intervals for group 3. Bitsets: 0 -> Battery report, 5 -> Temperature, 6 -> Humidity, 7 -> Luminosity</Help>
|
||||
</Value>
|
||||
<Value type="int" index="110" genre="config" label="Reset #111-113" value="0" write_only="true" affects="111,112,113">
|
||||
<Help>Reset to default parameters number 111-113. Any value other then 0 will initiate this reset.</Help>
|
||||
</Value>
|
||||
<Value type="int" index="111" genre="config" label="Group 1 Interval" units="seconds" min="1" max="2678400" value="720">
|
||||
<Help>The interval of sending report group 1. 1 to 2678400 seconds</Help>
|
||||
</Value>
|
||||
<Value type="int" index="112" genre="config" label="Group 2 Interval" units="seconds" min="1" max="2678400" value="720">
|
||||
<Help>The interval of sending report group 2. 1 to 2678400 seconds</Help>
|
||||
</Value>
|
||||
<Value type="int" index="113" genre="config" label="Group 3 Interval" units="seconds" min="1" max="2678400" value="720">
|
||||
<Help>The interval of sending report group 3. 1 to 2678400 seconds</Help>
|
||||
</Value>
|
||||
<Value type="button" index="255" genre="config" label="Reset to default" write_only="true" value="0" >
|
||||
<Help>Reset to factory defaults.</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
|
||||
<!-- Basic set as report -->
|
||||
<CommandClass id="32" setasreport="true"/>
|
||||
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="4" label="Lifeline" />
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="2" label="Wake up 10 minutes when batteries are inserted" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Stay awake for 10 minutes after batteries are inserted</Help>
|
||||
<Item label="No" value="0"/>
|
||||
<Item label="Yes" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="3" label="On time" max="15300" min="1" type="short" units="seconds" value="240">
|
||||
<Help>How long should the device associated to multi sensor keep state On before sending it Off command (if the value is bigger than 255, the value would be rounded to next integer in minutes)</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="4" label="Enable Motion Sensor" max="1" min="0" size="1" type="list" value="1">
|
||||
<Help>Enable Motion Sensor</Help>
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Enabled" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="5" label="Command Options" max="2" min="1" size="1" type="list" value="1">
|
||||
<Help>Which commands to send when PIR motion sensor triggered</Help>
|
||||
<Item label="Basic Set (default)" value="1"/>
|
||||
<Item label="Binary Sensor Report" value="2"/>
|
||||
</Value>
|
||||
<Value affects="101,102,103" genre="config" index="100" label="Reset #101-103" type="int" value="0" write_only="true">
|
||||
<Help>Reset to default parameters number 101-103. Any value other then 0 will initiate this reset.</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="101" label="Group 1 Reports" type="int" units="" value="0">
|
||||
<Help>Which reports need to send automatically in timing intervals for group 1. Bitsets: 0 -> Battery report, 5 -> Temperature, 6 -> Humidity, 7 -> Luminosity</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="102" label="Group 2 Reports" type="int" value="0">
|
||||
<Help>Which reports need to send automatically in timing intervals for group 2. Bitsets: 0 -> Battery report, 5 -> Temperature, 6 -> Humidity, 7 -> Luminosity</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="103" label="Group 3 Reports" type="int" value="0">
|
||||
<Help>Which reports need to send automatically in timing intervals for group 3. Bitsets: 0 -> Battery report, 5 -> Temperature, 6 -> Humidity, 7 -> Luminosity</Help>
|
||||
</Value>
|
||||
<Value affects="111,112,113" genre="config" index="110" label="Reset #111-113" type="int" value="0" write_only="true">
|
||||
<Help>Reset to default parameters number 111-113. Any value other then 0 will initiate this reset.</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="111" label="Group 1 Interval" max="2678400" min="1" type="int" units="seconds" value="720">
|
||||
<Help>The interval of sending report group 1. 1 to 2678400 seconds</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="112" label="Group 2 Interval" max="2678400" min="1" type="int" units="seconds" value="720">
|
||||
<Help>The interval of sending report group 2. 1 to 2678400 seconds</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="113" label="Group 3 Interval" max="2678400" min="1" type="int" units="seconds" value="720">
|
||||
<Help>The interval of sending report group 3. 1 to 2678400 seconds</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="255" label="Reset to default" type="button" value="0" write_only="true">
|
||||
<Help>Reset to factory defaults.</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Basic set as report -->
|
||||
<CommandClass id="32">
|
||||
<Compatibility>
|
||||
<SetAsReport>true</SetAsReport>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" label="Lifeline" max_associations="4"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -1,77 +1,92 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
<Product Revision="4" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0086:0009:0002</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/aeotec/dsb09104.png</MetaDataItem>
|
||||
<MetaDataItem id="0009" name="ZWProductPage" type="0002">https://products.z-wavealliance.org/products/141/</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://www.aeon-labs.com/site/products/category/1/</MetaDataItem>
|
||||
<MetaDataItem name="ProductSupport">http://www.aeon-labs.com/site/support/</MetaDataItem>
|
||||
<MetaDataItem name="Description">The Aeon Labs Smart Energy Monitor is a low-cost energy monitor for the entire home. It can wirelessly report immediate wattage and kWh usage to central control point gateways such as the 4HomeMedia CP and can be easily and safely installed by anyone.
|
||||
</MetaDataItem>
|
||||
<MetaDataItem id="0009" name="FrequencyName" type="0002">U.S. / Canada / Mexico / CEPT (Europe)</MetaDataItem>
|
||||
<MetaDataItem name="Name">Aeon Labs Home Energy Meter EU</MetaDataItem>
|
||||
<MetaDataItem id="0009" name="Identifier" type="0002">DSB09xxx-ZWUS v1.54</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="3">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/140/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="4">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/141/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<!--
|
||||
Aeotec DSB09104 Home Energy Meter
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584509
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="short" index="1" genre="config" label="Country Voltage" units="volts" min="0" max="240" value="120">
|
||||
<Value genre="config" index="1" label="Country Voltage" max="240" min="0" type="short" units="volts" value="120">
|
||||
<Help>
|
||||
Voltage to calculate wattage from amperage. US=120. EU,ANZ=240.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="3" genre="config" label="Power changed" units="" min="0" max="1" value="0">
|
||||
<Value genre="config" index="3" label="Power changed" max="1" min="0" type="byte" units="" value="0">
|
||||
<Help>
|
||||
Automatic report only when power is changed.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="4" genre="config" label="Wattage Threshold" units="watts" value="50">
|
||||
<Value genre="config" index="4" label="Wattage Threshold" type="short" units="watts" value="50">
|
||||
<Help>
|
||||
Threshold change in wattage to induce a automatic report (whole HEM).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="5" genre="config" label="Wattage Threshold C1" units="watts" value="50">
|
||||
<Value genre="config" index="5" label="Wattage Threshold C1" type="short" units="watts" value="50">
|
||||
<Help>
|
||||
Threshold change in wattage to induce a automatic report (Clamp 1).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="6" genre="config" label="Wattage Threshold C2" units="watts" value="50">
|
||||
<Value genre="config" index="6" label="Wattage Threshold C2" type="short" units="watts" value="50">
|
||||
<Help>
|
||||
Threshold change in wattage to induce a automatic report (Clamp 2).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="7" genre="config" label="Wattage Threshold C3" units="watts" value="50">
|
||||
<Value genre="config" index="7" label="Wattage Threshold C3" type="short" units="watts" value="50">
|
||||
<Help>
|
||||
Threshold change in wattage to induce a automatic report (Clamp 3).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="8" genre="config" label="Wattage Percentage Change" units="%" value="10">
|
||||
<Value genre="config" index="8" label="Wattage Percentage Change" type="byte" units="%" value="10">
|
||||
<Help>
|
||||
Percentage change in wattage to induce a automatic report (whole HEM).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="9" genre="config" label="Wattage Percentage Change C1" units="%" value="10">
|
||||
<Value genre="config" index="9" label="Wattage Percentage Change C1" type="byte" units="%" value="10">
|
||||
<Help>
|
||||
Percentage change in wattage to induce a automatic report (Clamp 1).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="10" genre="config" label="Wattage Percentage Change C2" units="%" value="10">
|
||||
<Value genre="config" index="10" label="Wattage Percentage Change C2" type="byte" units="%" value="10">
|
||||
<Help>
|
||||
Percentage change in wattage to induce a automatic report (Clamp 2).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="11" genre="config" label="Wattage Percentage Change C3" units="%" value="10">
|
||||
<Value genre="config" index="11" label="Wattage Percentage Change C3" type="byte" units="%" value="10">
|
||||
<Help>
|
||||
Percentage change in wattage to induce a automatic report (Clamp 3).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="12" genre="config" label="Accumulate energy" units="" min="0" max="1" value="0">
|
||||
<Value genre="config" index="12" label="Accumulate energy" max="1" min="0" type="byte" units="" value="0">
|
||||
<Help>
|
||||
Accumulate energy when Battery Powered.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="20" genre="config" label="USB powered" units="" min="0" max="1" read_only="true" value="0">
|
||||
<Value genre="config" index="20" label="USB powered" max="1" min="0" read_only="true" type="byte" units="" value="0">
|
||||
<Help>
|
||||
This byte denotes whether the product is using batteries (value = 0) or using USB power (value = 1).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="100" genre="config" label="Reset #101-103" units="" value="0" write_only="true" affects="101,102,103">
|
||||
<Value affects="101,102,103" genre="config" index="100" label="Reset #101-103" type="int" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
Reset to default parameters number 101-103. Any value other then 0 will initiate this reset.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="101" genre="config" label="Group 1 Reports" units="" value="0">
|
||||
<Value genre="config" index="101" label="Group 1 Reports" type="int" units="" value="0">
|
||||
<Help>
|
||||
Which reports need to send in group1. Format is as follows:
|
||||
Byte 1 (msb): Reserved
|
||||
|
@ -94,7 +109,7 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584509
|
|||
Bit 0: Auto Send Battery Report at the group time interval (whole HEM)
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="102" genre="config" label="Group 2 Reports" units="" value="0">
|
||||
<Value genre="config" index="102" label="Group 2 Reports" type="int" units="" value="0">
|
||||
<Help>
|
||||
Which reports need to send in group2. Format is as follows:
|
||||
Byte 1 (msb): Reserved
|
||||
|
@ -117,7 +132,7 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584509
|
|||
Bit 0: Auto Send Battery Report at the group time interval (whole HEM)
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="103" genre="config" label="Group 3 Reports" units="" value="0">
|
||||
<Value genre="config" index="103" label="Group 3 Reports" type="int" units="" value="0">
|
||||
<Help>
|
||||
Which reports need to send in group3. Format is as follows:
|
||||
Byte 1 (msb): Reserved
|
||||
|
@ -140,52 +155,53 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584509
|
|||
Bit 0: Auto Send Battery Report at the group time interval (whole HEM)
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="110" genre="config" label="Reset #111-113" units="" value="0" write_only="true" affects="111,112,113">
|
||||
<Value affects="111,112,113" genre="config" index="110" label="Reset #111-113" type="int" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
Reset to default parameters number 111-113. Any value other then 0 will initiate this reset.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="111" genre="config" label="Group 1 Interval" units="seconds" value="720">
|
||||
<Value genre="config" index="111" label="Group 1 Interval" type="int" units="seconds" value="720">
|
||||
<Help>
|
||||
The interval of sending report group 1.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="112" genre="config" label="Group 2 Interval" units="seconds" value="720">
|
||||
<Value genre="config" index="112" label="Group 2 Interval" type="int" units="seconds" value="720">
|
||||
<Help>
|
||||
The interval of sending report group 2.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="113" genre="config" label="Group 3 Interval" units="seconds" value="720">
|
||||
<Value genre="config" index="113" label="Group 3 Interval" type="int" units="seconds" value="720">
|
||||
<Help>
|
||||
The interval of sending report group 3.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="253" genre="config" label="Unit Recalibration (dangerous)" units="" value="0" write_only="true">
|
||||
<Value genre="config" index="253" label="Unit Recalibration (dangerous)" type="int" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
Re-calibrate (will destroy factory calibration). CONTACT AEON LABS before using.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="254" genre="config" label="Device Tag" units="" value="0">
|
||||
<Value genre="config" index="254" label="Device Tag" type="short" units="" value="0">
|
||||
<Help>
|
||||
Device tag.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="255" genre="config" label="Reset default configuration" units="" value="0" write_only="true" affects="all">
|
||||
<Value affects="all" genre="config" index="255" label="Reset default configuration" type="int" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
Reset to the default configuration.
|
||||
</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
|
||||
<!-- COMMAND_CLASS_WAKE_UP. This class is in the list reported by the HEM, but it does not
|
||||
respond to requests. It still needs to be supported so that wake up notifications are handled. -->
|
||||
<CommandClass id="132" create_vars="false" />
|
||||
|
||||
<CommandClass id="132">
|
||||
<Compatibility>
|
||||
<CreateVars>false</CreateVars>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="5" label="Lifeline" />
|
||||
<Group index="1" label="Lifeline" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
||||
|
|
18
config/aeotec/dsb28-zweu.xml
Normal file
18
config/aeotec/dsb28-zweu.xml
Normal file
|
@ -0,0 +1,18 @@
|
|||
<Product Revision="2" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0086:0001:0002</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/aeotec/dsb28-zweu.png</MetaDataItem>
|
||||
<MetaDataItem id="0001" name="ZWProductPage" type="0002">https://products.z-wavealliance.org/products/806/</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://aeotec.com/z-wave-home-energy-measure</MetaDataItem>
|
||||
<MetaDataItem id="0001" name="FrequencyName" type="0002">CEPT (Europe) / Australia / New Zealand</MetaDataItem>
|
||||
<MetaDataItem name="Description">You hear a lot about energy use these days. About how if we reduce the amount of energy we use we can not only save money but also save the environment. But saving money by using less electricity is only possible if we understand when and how we use it. That’s what Aeotec’s Z-Wave Home Energy Meter provides you with – understanding.
|
||||
|
||||
Installed in an electricity box, the energy meter will monitor the total consumption of electricity used by an entire building. And its intelligent clamps will report that energy use back to your Z-Wave gateway or controller, in watts or kilowatt-hours, and in real time. So you can see how much electricity you really use and when you use it.</MetaDataItem>
|
||||
<MetaDataItem id="0001" name="Identifier" type="0002">DSB28-ZWAU</MetaDataItem>
|
||||
<MetaDataItem name="Name">Aeon Labs Home Energy Meter DSB28-ZWAU</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="1">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/805/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="2">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/806/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
</Product>
|
|
@ -1,71 +1,85 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
<Product Revision="2" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0086:001C:0002</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/aeotec/dsb28.png</MetaDataItem>
|
||||
<MetaDataItem id="001C" name="ZWProductPage" type="0002">https://products.z-wavealliance.org/products/705/</MetaDataItem>
|
||||
<MetaDataItem id="001C" name="Identifier" type="0002">DSB28-ZWUS</MetaDataItem>
|
||||
<MetaDataItem id="001C" name="FrequencyName" type="0002">U.S. / Canada / Mexico</MetaDataItem>
|
||||
<MetaDataItem name="Description">You hear a lot about energy use these days. About how if we reduce the amount of energy we use we can not only save money but also save the environment. But saving money by using less electricity is only possible if we understand when and how we use it. That’s what Aeotec’s Z-Wave Home Energy Meter provides you with – understanding.
|
||||
|
||||
Installed in an electricity box, the energy meter will monitor the total consumption of electricity used by an entire building. And its intelligent clamps will report that energy use back to your Z-Wave gateway or controller, in watts or kilowatt-hours, and in real time. So you can see how much electricity you really use and when you use it.</MetaDataItem>
|
||||
<MetaDataItem name="Name">Home Energy Meter G2</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://aeotec.com/z-wave-home-energy-measure</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="2">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/705/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<!--
|
||||
Aeotec DSB28 Home Energy Meter (2nd Edition)
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584508
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="2" genre="config" label="Reverse Clamping" units="" min="0" max="1" value="0" size="1">
|
||||
<Value genre="config" index="2" label="Reverse Clamping" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
If the reverse clamping pliers, negative power is detected.
|
||||
</Help>
|
||||
<Item label="Disable" value="0" />
|
||||
<Item label="Enable" value="1" />
|
||||
</Value>
|
||||
<Value type="list" index="3" genre="config" label="Power changed" units="" min="0" max="1" value="0" size="1">
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="3" label="Power changed" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
Automatic report only when power is changed.
|
||||
</Help>
|
||||
<Item label="Disable" value="0" />
|
||||
<Item label="Enable" value="1" />
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="short" index="4" genre="config" label="Wattage Threshold" units="watts" value="50">
|
||||
<Value genre="config" index="4" label="Wattage Threshold" type="short" units="watts" value="50">
|
||||
<Help>
|
||||
Threshold change in wattage to induce a automatic report (whole HEM).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="5" genre="config" label="Wattage Threshold C1" units="watts" value="50">
|
||||
<Value genre="config" index="5" label="Wattage Threshold C1" type="short" units="watts" value="50">
|
||||
<Help>
|
||||
Threshold change in wattage to induce a automatic report (Clamp 1).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="6" genre="config" label="Wattage Threshold C2" units="watts" value="50">
|
||||
<Value genre="config" index="6" label="Wattage Threshold C2" type="short" units="watts" value="50">
|
||||
<Help>
|
||||
Threshold change in wattage to induce a automatic report (Clamp 2).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="7" genre="config" label="Wattage Threshold C3" units="watts" value="50">
|
||||
<Value genre="config" index="7" label="Wattage Threshold C3" type="short" units="watts" value="50">
|
||||
<Help>
|
||||
Threshold change in wattage to induce a automatic report (Clamp 3).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="8" genre="config" label="Wattage Percentage Change" units="%" value="10">
|
||||
<Value genre="config" index="8" label="Wattage Percentage Change" type="byte" units="%" value="10">
|
||||
<Help>
|
||||
Percentage change in wattage to induce a automatic report (whole HEM).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="9" genre="config" label="Wattage Percentage Change C1" units="%" value="10">
|
||||
<Value genre="config" index="9" label="Wattage Percentage Change C1" type="byte" units="%" value="10">
|
||||
<Help>
|
||||
Percentage change in wattage to induce a automatic report (Clamp 1).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="10" genre="config" label="Wattage Percentage Change C2" units="%" value="10">
|
||||
<Value genre="config" index="10" label="Wattage Percentage Change C2" type="byte" units="%" value="10">
|
||||
<Help>
|
||||
Percentage change in wattage to induce a automatic report (Clamp 2).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="11" genre="config" label="Wattage Percentage Change C3" units="%" value="10">
|
||||
<Value genre="config" index="11" label="Wattage Percentage Change C3" type="byte" units="%" value="10">
|
||||
<Help>
|
||||
Percentage change in wattage to induce a automatic report (Clamp 3).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="100" genre="config" label="Reset #101-103" units="" value="0" write_only="true" affects="101,102,103">
|
||||
<Value affects="101,102,103" genre="config" index="100" label="Reset #101-103" type="int" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
Reset to default parameters number 101-103. Any value other then 0 will initiate this reset.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="101" genre="config" label="Group 1 Reports" units="" value="0">
|
||||
<Value genre="config" index="101" label="Group 1 Reports" type="int" units="" value="0">
|
||||
<Help>
|
||||
Which reports need to send in group1. Format is as follows:
|
||||
Byte 1 (msb): Reserved
|
||||
|
@ -88,7 +102,7 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584508
|
|||
Bit 0: Auto Send Battery Report at the group time interval (whole HEM)
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="102" genre="config" label="Group 2 Reports" units="" value="0">
|
||||
<Value genre="config" index="102" label="Group 2 Reports" type="int" units="" value="0">
|
||||
<Help>
|
||||
Which reports need to send in group2. Format is as follows:
|
||||
Byte 1 (msb): Reserved
|
||||
|
@ -111,7 +125,7 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584508
|
|||
Bit 0: Auto Send Battery Report at the group time interval (whole HEM)
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="103" genre="config" label="Group 3 Reports" units="" value="0">
|
||||
<Value genre="config" index="103" label="Group 3 Reports" type="int" units="" value="0">
|
||||
<Help>
|
||||
Which reports need to send in group3. Format is as follows:
|
||||
Byte 1 (msb): Reserved
|
||||
|
@ -134,48 +148,45 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584508
|
|||
Bit 0: Auto Send Battery Report at the group time interval (whole HEM)
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="110" genre="config" label="Reset #111-113" units="" value="0" write_only="true" affects="111,112,113">
|
||||
<Value affects="111,112,113" genre="config" index="110" label="Reset #111-113" type="int" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
Reset to default parameters number 111-113. Any value other then 0 will initiate this reset.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="111" genre="config" label="Group 1 Interval" units="seconds" value="720">
|
||||
<Value genre="config" index="111" label="Group 1 Interval" type="int" units="seconds" value="720">
|
||||
<Help>
|
||||
The interval of sending report group 1.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="112" genre="config" label="Group 2 Interval" units="seconds" value="720">
|
||||
<Value genre="config" index="112" label="Group 2 Interval" type="int" units="seconds" value="720">
|
||||
<Help>
|
||||
The interval of sending report group 2.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="113" genre="config" label="Group 3 Interval" units="seconds" value="720">
|
||||
<Value genre="config" index="113" label="Group 3 Interval" type="int" units="seconds" value="720">
|
||||
<Help>
|
||||
The interval of sending report group 3.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" index="200" genre="config" label="Partner ID" units="" min="0" max="1" size="1" value="0">
|
||||
<Item label="Aeon Labs Standard Product" value="0" />
|
||||
<Item label="AT&T" value="1" />
|
||||
</Value>
|
||||
<Value type="short" index="254" genre="config" label="Device Tag" units="" value="0">
|
||||
<Value genre="config" index="200" label="Partner ID" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Item label="Aeon Labs Standard Product" value="0"/>
|
||||
<Item label="AT&T" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="254" label="Device Tag" type="short" units="" value="0">
|
||||
<Help>
|
||||
Device tag.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="255" genre="config" label="Reset default configuration" units="" value="0" write_only="true" affects="all">
|
||||
<Value affects="all" genre="config" index="255" label="Reset default configuration" type="int" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
Reset to the default configuration.
|
||||
</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
|
||||
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="5" label="Lifeline" />
|
||||
<Group index="1" label="Lifeline" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
||||
|
|
|
@ -1,47 +1,67 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Aeotec DSB29 Door/Window Sensor (2nd Edition)
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584513
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
--><Product Revision="5" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0086:001D:0002</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/aeotec/dsb29.png</MetaDataItem>
|
||||
<MetaDataItem id="001D" name="ZWProductPage" type="0002">https://products.z-wavealliance.org/products/772/</MetaDataItem>
|
||||
<MetaDataItem id="001D" name="FrequencyName" type="0002">U.S. / Canada / Mexico / CEPT (Europe) / Australia / New Zealand</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://aeotec.com/z-wave-door-window-sensor</MetaDataItem>
|
||||
<MetaDataItem name="Name">Door Window Sensor G2</MetaDataItem>
|
||||
<MetaDataItem id="001D" name="Identifier" type="0002">DSB29-ZWAU</MetaDataItem>
|
||||
<MetaDataItem name="Description">We always think of tools in our house as ‘doing things’. Switches turn lights on. Remotes turn TVs off. Things do the basic stuff we tell them to – nothing more, nothing less.
|
||||
That’s a description of a house of the past.
|
||||
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" genre="config" instance="1" index="1" label="Toggle the sensor binary report value when the Magnet switch is opened/closed." min="0" max="1" value="0" size="1">
|
||||
<Help>Default setting: Open: FF, Close: 00</Help>
|
||||
<Item label="Open: FF, Close: 00" value="0"/>
|
||||
<Item label="Open: 00, Close: FF" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="2" label="Enable wake up 10 minutes when the power is switched on." min="0" max="1" value="0" size="1">
|
||||
<Help>Default setting: Disable</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="3" label="Toggle the basic set value when Magnet switch is opened/closed." min="0" max="1" value="0" size="1">
|
||||
<Help>Default setting: Open: FF, Close: 00</Help>
|
||||
<Item label="Open: FF, Close: 00" value="0"/>
|
||||
<Item label="Open: 00, Close: FF" value="1"/>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="121" label="Determines which report will be sent when Magnet switch is opened/ closed." min="0" max="65535" value="255" size="4">
|
||||
<Help>Which reports need to send automatically in timing intervals for group 1. Bitsets: 0->Battery report, 4->Sensor Binary, 8->Basic Set, Default setting: 0x00000100 (Basic Set)
|
||||
The house of today has intelligence built in. Or at least it should.
|
||||
|
||||
Inspired by the humble thermostat, Aeotec’s Z-Wave Door & Window Sensor sits as a part of our Intelligence range. Like a thermostat, we’ve designed it to find things out, to understand things about your home, and to then use that information to make your home more comfortable, to make your life easier.
|
||||
|
||||
The Door & Window Sensor finds out something very simple – whether a door or a window, or in fact any object in your home, is open or closed. But there’s power in simplicity. Power that allows you to inform the rest of your Z-Wave network about your selected doors and windows. Like a thermostat lets your heating and cooling systems know what they should do next, Aeotec’s Z-Wave Door & Window Sensor does the same. Perhaps an open door means that your lights should turn on and welcome you home. Perhaps an open window means that an alarm should be trigged. Whatever it means to your home, with door and window sensors installed, your Z-Wave network will have both the power and the itelligence to do it.</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="3">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/701/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="4">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/764/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="5">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/772/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="1" instance="1" label="Toggle the sensor binary report value when the Magnet switch is opened/closed." max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Default setting: Open: FF, Close: 00</Help>
|
||||
<Item label="Open: FF, Close: 00" value="0"/>
|
||||
<Item label="Open: 00, Close: FF" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="2" instance="1" label="Enable wake up 10 minutes when the power is switched on." max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Default setting: Disable</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="3" instance="1" label="Toggle the basic set value when Magnet switch is opened/closed." max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Default setting: Open: FF, Close: 00</Help>
|
||||
<Item label="Open: FF, Close: 00" value="0"/>
|
||||
<Item label="Open: 00, Close: FF" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="121" instance="1" label="Determines which report will be sent when Magnet switch is opened/ closed." max="65535" min="0" size="4" type="int" value="255">
|
||||
<Help>Which reports need to send automatically in timing intervals for group 1. Bitsets: 0->Battery report, 4->Sensor Binary, 8->Basic Set, Default setting: 0x00000100 (Basic Set)
|
||||
Ideal Setting for OZW is 17 (Sensor Binary and Battery Report)</Help>
|
||||
</Value>
|
||||
<Value type="short" index="254" genre="config" label="Device Tag" units="" min="0" max="255" value="0">
|
||||
<Help>Device Tag</Help>
|
||||
</Value>
|
||||
<Value type="button" index="255" genre="config" label="Reset configuration settings to factory defaults" write_only="true" value="0" >
|
||||
<Help>Reset to factory defaults.</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
|
||||
<!-- Basic set as report -->
|
||||
<CommandClass id="32" setasreport="true"/>
|
||||
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="6" label="Lifeline" />
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
|
||||
</Value>
|
||||
<Value genre="config" index="254" label="Device Tag" max="255" min="0" type="short" units="" value="0">
|
||||
<Help>Device Tag</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="255" label="Reset configuration settings to factory defaults" type="button" value="0" write_only="true">
|
||||
<Help>Reset to factory defaults.</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Basic set as report -->
|
||||
<CommandClass id="32">
|
||||
<Compatibility>
|
||||
<SetAsReport>true</SetAsReport>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" label="Lifeline" max_associations="6"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -1,28 +1,27 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
<Product Revision="2" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<!--
|
||||
Aeotec DSB45 Water Sensor
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584511
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="1" genre="config" label="Sensor Binary Report Toggle" min="0" max="1" value="0" size="1">
|
||||
<Help>Toggle the sensor binary report value when the Water Sensor is Triggered</Help>
|
||||
<Item label="Normal" value="0" />
|
||||
<Item label="Inverse" value="1" />
|
||||
</Value>
|
||||
<Value type="list" index="2" genre="config" label="Wake Up on Power On" min="0" max="1" value="0" size="1">
|
||||
<Help>Enable wake up 10 minutes when the power is switched on.</Help>
|
||||
<Item label="Disable" value="0" />
|
||||
<Item label="Enable" value="1" />
|
||||
</Value>
|
||||
<Value type="list" index="3" genre="config" label="Basic Set Toggle" min="0" max="1" value="0" size="1">
|
||||
<Help>Toggle the basic set value when the Water Sensor is Triggered</Help>
|
||||
<Item label="Normal" value="0" />
|
||||
<Item label="Inverse" value="1" />
|
||||
</Value>
|
||||
<Value type="int" genre="config" index="121" label="Report Type to Send" min="0" max="4369" value="256">
|
||||
<Help>To set which command will be sent to the associated nodes when the Water Sensor is triggered.
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="1" label="Sensor Binary Report Toggle" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Toggle the sensor binary report value when the Water Sensor is Triggered</Help>
|
||||
<Item label="Normal" value="0"/>
|
||||
<Item label="Inverse" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="2" label="Wake Up on Power On" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Enable wake up 10 minutes when the power is switched on.</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="3" label="Basic Set Toggle" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Toggle the basic set value when the Water Sensor is Triggered</Help>
|
||||
<Item label="Normal" value="0"/>
|
||||
<Item label="Inverse" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="121" label="Report Type to Send" max="4369" min="0" type="int" value="256">
|
||||
<Help>To set which command will be sent to the associated nodes when the Water Sensor is triggered.
|
||||
Bitsets:
|
||||
1 -> Battery
|
||||
4 -> Sensor Binary
|
||||
|
@ -31,21 +30,21 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584511
|
|||
Default setting: 0x100 (Basic Set)
|
||||
OZW Ideal Setting: 0x1011 (Battery, Sensor Binary Report, Alarm)
|
||||
</Help>
|
||||
</Value>
|
||||
|
||||
<Value type="button" index="255" genre="config" label="Reset to default" write_only="true" value="0" >
|
||||
<Help>Reset to factory defaults.</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
|
||||
<!-- the Device Doesn't support Get for Alarm Class -->
|
||||
<CommandClass id="113" getsupported="false"/>
|
||||
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="4" label="Lifeline" />
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
|
||||
</Value>
|
||||
<Value genre="config" index="255" label="Reset to default" type="button" value="0" write_only="true">
|
||||
<Help>Reset to factory defaults.</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- the Device Doesn't support Get for Alarm Class -->
|
||||
<CommandClass id="113">
|
||||
<Compatibility>
|
||||
<GetSupported>false</GetSupported>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" label="Lifeline" max_associations="4"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -1,28 +1,27 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
<Product Revision="2" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<!--
|
||||
Aeotec DSB54 Recessed Door Sensor
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584512
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
<Value type="byte" genre="config" instance="1" index="1" label="Toggle the sensor binary report value when the Magnet switch is opened/closed." min="0" max="1" value="0">
|
||||
<Help>0, Open: FF, Close: 00; 1, Open: 00, Close: FF;
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="1" instance="1" label="Toggle the sensor binary report value when the Magnet switch is opened/closed." max="1" min="0" type="byte" value="0">
|
||||
<Help>0, Open: FF, Close: 00; 1, Open: 00, Close: FF;
|
||||
Default setting: 0
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="3" label="Toggle the basic set value when Magnet switch is opened/closed." min="0" max="1" value="0">
|
||||
<Help>0, Open: FF, Close: 00; 1, Open: 00, Close: FF;
|
||||
</Value>
|
||||
<Value genre="config" index="3" instance="1" label="Toggle the basic set value when Magnet switch is opened/closed." max="1" min="0" type="byte" value="0">
|
||||
<Help>0, Open: FF, Close: 00; 1, Open: 00, Close: FF;
|
||||
Default setting: 0
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="101" label="If battery power is below the warning value, low battery checking function will be triggered and Low Battery Warning Report will be sent." min="0" max="1" value="0">
|
||||
<Help>0, Disable, 1, Enable;
|
||||
</Value>
|
||||
<Value genre="config" index="101" instance="1" label="If battery power is below the warning value, low battery checking function will be triggered and Low Battery Warning Report will be sent." max="1" min="0" type="byte" value="0">
|
||||
<Help>0, Disable, 1, Enable;
|
||||
Default setting: 0
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="111" label="The low battery check Interval time,0-4294967295 seconds." min="0" max="1" value="86640">
|
||||
<Help>This parameter is available when the low battery checking
|
||||
</Value>
|
||||
<Value genre="config" index="111" instance="1" label="The low battery check Interval time,0-4294967295 seconds." max="1" min="0" type="int" value="86640">
|
||||
<Help>This parameter is available when the low battery checking
|
||||
function is activated or the device was waked up by other
|
||||
actions (i.e. the z-wave button trigger, magnet switch
|
||||
trigger and the Wake Up Interval Set timeout trigger).
|
||||
|
@ -32,28 +31,32 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584512
|
|||
Wake Up Interval Set timeout trigger.
|
||||
Default setting: 86640
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="121" label="Flag values for which reports to send when the Magnet of Recessed Door Sensor is triggered." min="0" max="1" value="256">
|
||||
<Help>Bitsets:
|
||||
</Value>
|
||||
<Value genre="config" index="121" instance="1" label="Flag values for which reports to send when the Magnet of Recessed Door Sensor is triggered." max="1" min="0" type="int" value="256">
|
||||
<Help>Bitsets:
|
||||
4 -> Sensor Binary
|
||||
8 -> Basic Set
|
||||
Default setting: 0x00000100 (Basic Set)
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="254" genre="config" label="Device Tag" units="" min="0" max="255" value="0">
|
||||
<Help>Device Tag</Help>
|
||||
</Value>
|
||||
<Value type="button" index="255" genre="config" label="Reset configuration settings to factory defaults" write_only="true" value="0" >
|
||||
<Help>Reset to factory defaults.</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Basic set as report-->
|
||||
<CommandClass id="32" setasreport="true"/>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="2">
|
||||
<Group index="1" max_associations="5" label="Lifeline" />
|
||||
<Group index="2" max_associations="5" label="Low Battery Warning Report" />
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Value>
|
||||
<Value genre="config" index="254" label="Device Tag" max="255" min="0" type="short" units="" value="0">
|
||||
<Help>Device Tag</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="255" label="Reset configuration settings to factory defaults" type="button" value="0" write_only="true">
|
||||
<Help>Reset to factory defaults.</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Basic set as report-->
|
||||
<CommandClass id="32">
|
||||
<Compatibility>
|
||||
<SetAsReport>true</SetAsReport>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="2">
|
||||
<Group index="1" label="Lifeline" max_associations="5"/>
|
||||
<Group index="2" label="Low Battery Warning Report" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -1,53 +1,67 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Aeotec DSC06106 Smart Energy Switch
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584529
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
--><Product Revision="2" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0086:0006:0003</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/aeotec/dsc06106.png</MetaDataItem>
|
||||
<MetaDataItem id="0006" name="ZWProductPage" type="0003">https://products.z-wavealliance.org/products/133/</MetaDataItem>
|
||||
<MetaDataItem id="0006" name="FrequencyName" type="0003">U.S. / Canada / Mexico</MetaDataItem>
|
||||
<MetaDataItem name="Description">Smart Energy SwitchThe Aeon Labs Smart Energy Switch is a low-cost Z-Wave appliance switch which can report immediate wattage energy usage or kWh energy usage over a period of time. It can also be controlled by other Z-Wave devices to turn on/off to save electricity when appropriate.
|
||||
|
||||
With an unobtrusive small form factor, the Aeon Labs Smart Energy Switch will not block other nearby Ac outlets. It is available in both matte white and matte black colors.. </MetaDataItem>
|
||||
<MetaDataItem name="ProductSupport">http://www.aeon-labs.com/site/support/</MetaDataItem>
|
||||
<MetaDataItem id="0006" name="Identifier" type="0003">DSB06xxx-ZWUS</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://www.aeon-labs.com/site/products/view/5/</MetaDataItem>
|
||||
<MetaDataItem name="Name">Aeon Labs Smart Energy Switch</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="2">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/133/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="1" genre="config" label="Report type" units="" min="0" max="1" size="1" value="0">
|
||||
<Value genre="config" index="1" label="Report type" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
Defines the contents of Multilevel Sensor Report after Multilevel Sensor Get received.
|
||||
</Help>
|
||||
<Item label="Power" value="0" />
|
||||
<Item label="Voltage" value="1" />
|
||||
<Item label="Power" value="0"/>
|
||||
<Item label="Voltage" value="1"/>
|
||||
</Value>
|
||||
<Value type="short" index="2" genre="config" label="Blinking behavior" units="" min="0" max="65535" write_only="true" value="0">
|
||||
<Value genre="config" index="2" label="Blinking behavior" max="65535" min="0" type="short" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
This is actually a double byte value. The LSB defines the total time the device needs to blink in seconds. The MSB defines the on/off interval of the blink in tenths of seconds.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" index="80" genre="config" label="Notification status" units="" size="1" value="0">
|
||||
<Value genre="config" index="80" label="Notification status" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
Enables automatic notifications to associated devices whenever there is a state change.
|
||||
</Help>
|
||||
<Item label="None" value="0" />
|
||||
<Item label="Hail" value="1" />
|
||||
<Item label="Basic" value="2" />
|
||||
<Item label="None" value="0"/>
|
||||
<Item label="Hail" value="1"/>
|
||||
<Item label="Basic" value="2"/>
|
||||
</Value>
|
||||
<Value type="bool" index="90" genre="config" label="Enable Wattage Reports" units="" value="0">
|
||||
<Value genre="config" index="90" label="Enable Wattage Reports" type="bool" units="" value="0">
|
||||
<Help>
|
||||
Enable/disable Wattage threshold and percent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="91" genre="config" label="Wattage threshold" units="watts" min="0" max="32000" value="50">
|
||||
<Value genre="config" index="91" label="Wattage threshold" max="32000" min="0" type="short" units="watts" value="50">
|
||||
<Help>
|
||||
The minimum change in wattage for a report to be sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="92" genre="config" label="Wattage threshold percent" units="%" min="0" max="99" value="10">
|
||||
<Value genre="config" index="92" label="Wattage threshold percent" max="99" min="0" type="byte" units="%" value="10">
|
||||
<Help>
|
||||
Minimum change in percent of wattage to send a report.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="button" index="100" genre="config" label="Default Group Reports" units="" write_only="true" value="0" affects="101,102,103">
|
||||
<Value affects="101,102,103" genre="config" index="100" label="Default Group Reports" type="button" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
Set report types for groups 1, 2 and 3 to default. Reverts to 0
|
||||
after set.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="101" genre="config" label="Report type G1" units="" value="8">
|
||||
<Value genre="config" index="101" label="Report type G1" type="int" units="" value="8">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 1. 2 is multisensor report. 4 is meter report for watts. 8 is meter report for kilowatts.
|
||||
Value 1 (msb) Reserved
|
||||
|
@ -69,7 +83,7 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584529
|
|||
Multilevel Sensor Report Command(wattage) automatically.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="102" genre="config" label="Report type G2" units="" value="0">
|
||||
<Value genre="config" index="102" label="Report type G2" type="int" units="" value="0">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 2. 2 is multisensor report. 4 is meter report for watts. 8 is meter report for kilowatts.
|
||||
Value 1 (msb) Reserved
|
||||
|
@ -91,7 +105,7 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584529
|
|||
Multilevel Sensor Report Command(wattage) automatically.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="103" genre="config" label="Report type G3" units="" value="0">
|
||||
<Value genre="config" index="103" label="Report type G3" type="int" units="" value="0">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 3. 2 is multisensor report. 4 is meter report for watts. 8 is meter report for kilowatts.
|
||||
Value 1 (msb) Reserved
|
||||
|
@ -113,32 +127,32 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584529
|
|||
Multilevel Sensor Report Command(wattage) automatically.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="button" index="110" genre="config" label="Default Group Time" units="" write_only="true" value="0" affects="111,112,113">
|
||||
<Value affects="111,112,113" genre="config" index="110" label="Default Group Time" type="button" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
Set time interval for sending reports for groups 1, 2 and 3 to default.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="111" genre="config" label="Send interval G1" units="seconds" min="0" max="65535" value="600">
|
||||
<Value genre="config" index="111" label="Send interval G1" max="65535" min="0" type="int" units="seconds" value="600">
|
||||
<Help>
|
||||
Defines the time interval when the defined report for group 1 is sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="112" genre="config" label="Send interval G2" units="seconds" min="0" max="65535" value="600">
|
||||
<Value genre="config" index="112" label="Send interval G2" max="65535" min="0" type="int" units="seconds" value="600">
|
||||
<Help>
|
||||
Defines the time interval when the defined report for group 2 is sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="113" genre="config" label="Send interval G3" units="seconds" min="0" max="65535" value="600">
|
||||
<Value genre="config" index="113" label="Send interval G3" max="65535" min="0" type="int" units="seconds" value="600">
|
||||
<Help>
|
||||
Defines the time interval when the defined report for group 3 is sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="254" genre="config" label="Device tag" units="" min="0" max="65535" value="0">
|
||||
<Value genre="config" index="254" label="Device tag" max="65535" min="0" type="short" units="" value="0">
|
||||
<Help>
|
||||
Device tag.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="button" index="255" genre="config" label="Reset device" units="" write_only="true" value="0">
|
||||
<Value genre="config" index="255" label="Reset device" type="button" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
Reset to the default configuration.
|
||||
</Help>
|
||||
|
@ -147,8 +161,7 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584529
|
|||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="5" label="Lifeline" />
|
||||
<Group index="1" label="Lifeline" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="1">
|
||||
<!--
|
||||
Aeotec DSC08101 Smart Energy Illuminator
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584521
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="1" genre="config" label="Multilevel Sensor Report Command" size="1" min="0" max="1" value="0">
|
||||
|
|
|
@ -1,56 +1,68 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
<Product Revision="2" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0086:000A:0003</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/aeotec/dsc10.png</MetaDataItem>
|
||||
<MetaDataItem id="000A" name="ZWProductPage" type="0003">https://products.z-wavealliance.org/products/704/</MetaDataItem>
|
||||
<MetaDataItem name="Name">Heavy-Duty Smart Energy Switch</MetaDataItem>
|
||||
<MetaDataItem id="000A" name="FrequencyName" type="0003">U.S. / Canada / Mexico</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://aeotec.com/z-wave-plug-in-switch/1014-high-power-z-wave-switch.html</MetaDataItem>
|
||||
<MetaDataItem id="000A" name="Identifier" type="0003">DSC10-ZWUS</MetaDataItem>
|
||||
<MetaDataItem name="Description">Control, automate and record the electricity consumption of a premise’s heavy-duty appliances. Works in and outdoors with appliances up to 30 amps.</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="2">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/704/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<!--
|
||||
Aeotec DSC10 Heavy-Duty Smart Switch
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Protocol refreshonnodeinfoframe="false"/>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="3" genre="config" label="Current Overload Protection" size="1" value="0">
|
||||
<Value genre="config" index="3" label="Current Overload Protection" size="1" type="list" value="0">
|
||||
<Help>
|
||||
Current Overload Protection. Load will be closed when
|
||||
the Current more than 39.5A and the time more than 5
|
||||
seconds
|
||||
</Help>
|
||||
<Item label="Disable" value="0" />
|
||||
<Item label="Enable" value="1" />
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="20" genre="config" label="LED Mode" size="1" value="0">
|
||||
<Value genre="config" index="20" label="LED Mode" size="1" type="list" value="0">
|
||||
<Help>LED status after power on</Help>
|
||||
<Item label="Last Status" value="0"/>
|
||||
<Item label="On" value="1"/>
|
||||
<Item label="Off" value="2"/>
|
||||
</Value>
|
||||
<Value type="list" index="80" genre="config" label="Notification status" units="" size="1" value="0">
|
||||
<Value genre="config" index="80" label="Notification status" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
Enables automatic notifications to associated devices whenever there is a state change.
|
||||
</Help>
|
||||
<Item label="None" value="0" />
|
||||
<Item label="Hail" value="1" />
|
||||
<Item label="Basic" value="2" />
|
||||
<Item label="None" value="0"/>
|
||||
<Item label="Hail" value="1"/>
|
||||
<Item label="Basic" value="2"/>
|
||||
</Value>
|
||||
<Value type="bool" index="90" genre="config" label="Enable Wattage Reports" units="" value="1">
|
||||
<Value genre="config" index="90" label="Enable Wattage Reports" type="bool" units="" value="1">
|
||||
<Help>
|
||||
Enable/disable Wattage threshold and percent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="91" genre="config" label="Wattage threshold" units="watts" min="0" max="32000" value="50">
|
||||
<Value genre="config" index="91" label="Wattage threshold" max="32000" min="0" type="short" units="watts" value="50">
|
||||
<Help>
|
||||
The minimum change in wattage for a report to be sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="92" genre="config" label="Wattage threshold percent" units="%" min="0" max="99" value="10">
|
||||
<Value genre="config" index="92" label="Wattage threshold percent" max="99" min="0" type="byte" units="%" value="10">
|
||||
<Help>
|
||||
Minimum change in percent of wattage to send a report.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="button" index="100" genre="config" label="Default Group Reports" units="" write_only="true" value="0" affects="101,102,103">
|
||||
<Value affects="101,102,103" genre="config" index="100" label="Default Group Reports" type="button" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
Set report types for groups 1, 2 and 3 to default. Reverts to 0
|
||||
after set.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="101" genre="config" label="Report type G1" units="" value="4">
|
||||
<Value genre="config" index="101" label="Report type G1" type="int" units="" value="4">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 1. 2 is multisensor report. 4 is meter report for watts. 8 is meter report for kilowatts.
|
||||
Value 1 (msb) Reserved
|
||||
|
@ -72,7 +84,7 @@ Aeotec DSC10 Heavy-Duty Smart Switch
|
|||
Multilevel Sensor Report Command(wattage) automatically.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="102" genre="config" label="Report type G2" units="" value="8">
|
||||
<Value genre="config" index="102" label="Report type G2" type="int" units="" value="8">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 2. 2 is multisensor report. 4 is meter report for watts. 8 is meter report for kilowatts.
|
||||
Value 1 (msb) Reserved
|
||||
|
@ -94,7 +106,7 @@ Aeotec DSC10 Heavy-Duty Smart Switch
|
|||
Multilevel Sensor Report Command(wattage) automatically.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="103" genre="config" label="Report type G3" units="" value="0">
|
||||
<Value genre="config" index="103" label="Report type G3" type="int" units="" value="0">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 3. 2 is multisensor report. 4 is meter report for watts. 8 is meter report for kilowatts.
|
||||
Value 1 (msb) Reserved
|
||||
|
@ -116,49 +128,47 @@ Aeotec DSC10 Heavy-Duty Smart Switch
|
|||
Multilevel Sensor Report Command(wattage) automatically.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="button" index="110" genre="config" label="Default Group Time" units="" write_only="true" value="0" affects="111,112,113">
|
||||
<Value affects="111,112,113" genre="config" index="110" label="Default Group Time" type="button" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
Set time interval for sending reports for groups 1, 2 and 3 to default.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="111" genre="config" label="Send interval G1" units="seconds" min="0" max="65535" value="5">
|
||||
<Value genre="config" index="111" label="Send interval G1" max="65535" min="0" type="int" units="seconds" value="5">
|
||||
<Help>
|
||||
Defines the time interval when the defined report for group 1 is sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="112" genre="config" label="Send interval G2" units="seconds" min="0" max="65535" value="120">
|
||||
<Value genre="config" index="112" label="Send interval G2" max="65535" min="0" type="int" units="seconds" value="120">
|
||||
<Help>
|
||||
Defines the time interval when the defined report for group 2 is sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="113" genre="config" label="Send interval G3" units="seconds" min="0" max="65535" value="120">
|
||||
<Value genre="config" index="113" label="Send interval G3" max="65535" min="0" type="int" units="seconds" value="120">
|
||||
<Help>
|
||||
Defines the time interval when the defined report for group 3 is sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" index="200" genre="config" label="Partner ID" units="" min="0" max="1" size="1" value="0">
|
||||
<Item label="Aeon Labs Standard Product" value="0" />
|
||||
<Item label="Other" value="1" />
|
||||
</Value>
|
||||
<Value type="list" genre="config" index="252" label="Lock/Unlock Configuration" min="0" max="1" size="1" value="0">
|
||||
<Value genre="config" index="200" label="Partner ID" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Item label="Aeon Labs Standard Product" value="0"/>
|
||||
<Item label="Other" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="252" label="Lock/Unlock Configuration" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Lock/ unlock all configuration parameters</Help>
|
||||
<Item label="Unlock" value="0"/>
|
||||
<Item label="Lock" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="255" genre="config" label="Reset To Factory Defaults" size="4" value="1" write_only="true">
|
||||
<Help>Reset to factory defaults</Help>
|
||||
<Item label="Reset to factory default setting" value="0"/>
|
||||
<Item label="Normal" value="1"/>
|
||||
<Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
|
||||
</Value>
|
||||
<Value genre="config" index="255" label="Reset To Factory Defaults" size="4" type="list" value="1" write_only="true">
|
||||
<Help>Reset to factory defaults</Help>
|
||||
<Item label="Reset to factory default setting" value="0"/>
|
||||
<Item label="Normal" value="1"/>
|
||||
<Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="2">
|
||||
<Group index="1" max_associations="5" label="LifeLine" />
|
||||
<Group index="2" max_associations="5" label="Retransmit Switch CC" />
|
||||
<Group index="1" label="LifeLine" max_associations="5"/>
|
||||
<Group index="2" label="Retransmit Switch CC" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
||||
|
|
|
@ -1,75 +1,85 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Aeotec DSC11 Smart Strip
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584527
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
--><Product Revision="2" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0086:000B:0003</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/aeotec/dsc11.png</MetaDataItem>
|
||||
<MetaDataItem id="000B" name="ZWProductPage" type="0003">https://products.z-wavealliance.org/products/1015/</MetaDataItem>
|
||||
<MetaDataItem name="Name">Aeon Labs Smart Strip DSC11-ZWUS</MetaDataItem>
|
||||
<MetaDataItem id="000B" name="FrequencyName" type="0003">U.S. / Canada / Mexico</MetaDataItem>
|
||||
<MetaDataItem id="000B" name="Identifier" type="0003">DSC11-ZWUS</MetaDataItem>
|
||||
<MetaDataItem name="Description">Smart Strip</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="2">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/1015/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<Protocol refreshonnodeinfoframe="false"/>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="4" genre="config" label="Report threshold" units="" min="0" max="1" size="1" value="1">
|
||||
<Value genre="config" index="4" label="Report threshold" max="1" min="0" size="1" type="list" units="" value="1">
|
||||
<Help>Enable selective reporting only when power change reaches a certain threshold or percentage set in 4.11 below.
|
||||
This is used to reduce network traffic.</Help>
|
||||
<Item label="Disable," value="0" />
|
||||
<Item label="Enable" value="1" />
|
||||
</Value>
|
||||
<Value type="short" index="5" genre="config" label="Whole Smart Strip Minimum Change to send Report (Watt) " units="watts" min="0" max="60000" size="2" value="25">
|
||||
<Item label="Disable," value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="5" label="Whole Smart Strip Minimum Change to send Report (Watt) " max="60000" min="0" size="2" type="short" units="watts" value="25">
|
||||
<Help>Threshold change in wattage to induce an automatic report (Whole Smart Strip).</Help>
|
||||
</Value>
|
||||
<Value type="short" index="6" genre="config" label="Socket 1 Minimum Change to send Report (Watt) " units="watts" min="0" max="60000" size="2" value="25">
|
||||
<Value genre="config" index="6" label="Socket 1 Minimum Change to send Report (Watt) " max="60000" min="0" size="2" type="short" units="watts" value="25">
|
||||
<Help>Threshold change in wattage to induce an automatic report (Socket 1).</Help>
|
||||
</Value>
|
||||
<Value type="short" index="7" genre="config" label="Socket 2 Minimum Change to send Report (Watt) " units="watts" min="0" max="60000" size="2" value="25">
|
||||
<Value genre="config" index="7" label="Socket 2 Minimum Change to send Report (Watt) " max="60000" min="0" size="2" type="short" units="watts" value="25">
|
||||
<Help>Threshold change in wattage to induce an automatic report (Socket 2).</Help>
|
||||
</Value>
|
||||
<Value type="short" index="8" genre="config" label="Socket 3 Minimum Change to send Report (Watt) " units="watts" min="0" max="60000" size="2" value="25">
|
||||
<Value genre="config" index="8" label="Socket 3 Minimum Change to send Report (Watt) " max="60000" min="0" size="2" type="short" units="watts" value="25">
|
||||
<Help>Threshold change in wattage to induce an automatic report (Socket 3).</Help>
|
||||
</Value>
|
||||
<Value type="short" index="9" genre="config" label="Socket 4 Minimum Change to send Report (Watt) " units="watts" min="0" max="60000" size="2" value="25">
|
||||
<Value genre="config" index="9" label="Socket 4 Minimum Change to send Report (Watt) " max="60000" min="0" size="2" type="short" units="watts" value="25">
|
||||
<Help>Threshold change in wattage to induce an automatic report (Socket 4).</Help>
|
||||
</Value>
|
||||
<Value type="short" index="10" genre="config" label="Socket 5 Minimum Change to send Report (Watt) " units="watts" min="0" max="60000" size="2" value="25">
|
||||
<Value genre="config" index="10" label="Socket 5 Minimum Change to send Report (Watt) " max="60000" min="0" size="2" type="short" units="watts" value="25">
|
||||
<Help>Threshold change in wattage to induce an automatic report (Socket 5).</Help>
|
||||
</Value>
|
||||
<Value type="short" index="11" genre="config" label="Socket 6 Minimum Change to send Report (Watt) " units="watts" min="0" max="60000" size="2" value="25">
|
||||
<Value genre="config" index="11" label="Socket 6 Minimum Change to send Report (Watt) " max="60000" min="0" size="2" type="short" units="watts" value="25">
|
||||
<Help>Threshold change in wattage to induce an automatic report (Socket 6).</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="12" genre="config" label="Whole Smart Strip Minimum Change to send Report (%)" units="%" min="0" max="100" value="5">
|
||||
<Value genre="config" index="12" label="Whole Smart Strip Minimum Change to send Report (%)" max="100" min="0" type="byte" units="%" value="5">
|
||||
<Help>Percentage change in wattage to induce an automatic report (Whole Smart Strip).</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="13" genre="config" label="Socket 1 Minimum Change to send Report (%)" units="%" min="0" max="100" value="5">
|
||||
<Value genre="config" index="13" label="Socket 1 Minimum Change to send Report (%)" max="100" min="0" type="byte" units="%" value="5">
|
||||
<Help>Percentage change in wattage to induce an automatic report (Socket 1).</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="14" genre="config" label="Socket 2 Minimum Change to send Report (%)" units="%" min="0" max="100" value="5">
|
||||
<Value genre="config" index="14" label="Socket 2 Minimum Change to send Report (%)" max="100" min="0" type="byte" units="%" value="5">
|
||||
<Help>Percentage change in wattage to induce an automatic report (Socket 2).</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="15" genre="config" label="Socket 3 Minimum Change to send Report (%)" units="%" min="0" max="100" value="5">
|
||||
<Value genre="config" index="15" label="Socket 3 Minimum Change to send Report (%)" max="100" min="0" type="byte" units="%" value="5">
|
||||
<Help>Percentage change in wattage to induce an automatic report (Socket 3).</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="16" genre="config" label="Socket 4 Minimum Change to send Report (%)" units="%" min="0" max="100" value="5">
|
||||
<Value genre="config" index="16" label="Socket 4 Minimum Change to send Report (%)" max="100" min="0" type="byte" units="%" value="5">
|
||||
<Help>Percentage change in wattage to induce an automatic report (Socket 4).</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="17" genre="config" label="Socket 5 Minimum Change to send Report (%)" units="%" min="0" max="100" value="5">
|
||||
<Value genre="config" index="17" label="Socket 5 Minimum Change to send Report (%)" max="100" min="0" type="byte" units="%" value="5">
|
||||
<Help>Percentage change in wattage to induce an automatic report (Socket 5).</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="18" genre="config" label="Socket 6 Minimum Change to send Report (%)" units="%" min="0" max="100" value="5">
|
||||
<Value genre="config" index="18" label="Socket 6 Minimum Change to send Report (%)" max="100" min="0" type="byte" units="%" value="5">
|
||||
<Help>Percentage change in wattage to induce an automatic report (Socket 6).</Help>
|
||||
</Value>
|
||||
<Value type="list" index="80" genre="config" label="Notification status" units="" min="0" max="2" size="1" value="0">
|
||||
<Value genre="config" index="80" label="Notification status" max="2" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Defines the automated status notification of an associated device when status changes</Help>
|
||||
<Item label="Nothing" value="0" />
|
||||
<Item label="Hail" value="1" />
|
||||
<Item label="Basic" value="2" />
|
||||
</Value>
|
||||
<Value type="short" index="90" genre="config" label="Temperature of Smart Strip" size="2" units="" value="0" read_only="true">
|
||||
<Item label="Nothing" value="0"/>
|
||||
<Item label="Hail" value="1"/>
|
||||
<Item label="Basic" value="2"/>
|
||||
</Value>
|
||||
<Value genre="config" index="90" label="Temperature of Smart Strip" read_only="true" size="2" type="short" units="" value="0">
|
||||
<Help>Get temperature of Smart Strip</Help>
|
||||
</Value>
|
||||
<Value type="button" index="100" genre="config" label="Default Group Reports" units="" write_only="true" affects="101,102,103">
|
||||
</Value>
|
||||
<Value affects="101,102,103" genre="config" index="100" label="Default Group Reports" type="button" units="" write_only="true">
|
||||
<Help>
|
||||
Set report types for groups 1, 2 and 3 to default.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="101" genre="config" label="Report type sent in Reporting Group 1" size="4" units="" value="0">
|
||||
<Value genre="config" index="101" label="Report type sent in Reporting Group 1" size="4" type="int" units="" value="0">
|
||||
<Help>Configure auto report which information as Group 1.
|
||||
Value 1 (msb) Reserved
|
||||
Value 2 Reserved
|
||||
|
@ -93,7 +103,7 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584527
|
|||
bit 0 Auto report the total power consumption with specified time interval
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="102" genre="config" label="Report type sent in Reporting Group 2" size="4" units="" value="0">
|
||||
<Value genre="config" index="102" label="Report type sent in Reporting Group 2" size="4" type="int" units="" value="0">
|
||||
<Help>Configure auto report which information as Group 2.
|
||||
Value 1 (msb) Reserved
|
||||
Value 2 Reserved
|
||||
|
@ -117,7 +127,7 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584527
|
|||
bit 0 Auto report the total power consumption with specified time interval
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="103" genre="config" label="Report type sent in Reporting Group 3" size="4" units="" value="0">
|
||||
<Value genre="config" index="103" label="Report type sent in Reporting Group 3" size="4" type="int" units="" value="0">
|
||||
<Help>Configure auto report which information as Group 3.
|
||||
Value 1 (msb) Reserved
|
||||
Value 2 Reserved
|
||||
|
@ -141,49 +151,47 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584527
|
|||
bit 0 Auto report the total power consumption with specified time interval
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="button" index="110" genre="config" label="Set 111-113 to default" units="" write_only="true" value="0" affects="111,112,113">
|
||||
<Value affects="111,112,113" genre="config" index="110" label="Set 111-113 to default" type="button" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
Set time interval for sending reports for groups 1, 2 and 3 to default.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="111" genre="config" label="Send Interval for Reporting Group 1" units="seconds" min="0" max="65535" value="600">
|
||||
<Value genre="config" index="111" label="Send Interval for Reporting Group 1" max="65535" min="0" type="int" units="seconds" value="600">
|
||||
<Help>
|
||||
Defines the time interval when the defined report for group 1 is sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="112" genre="config" label="Send Interval for Reporting Group 2" units="seconds" min="0" max="65535" value="600">
|
||||
<Value genre="config" index="112" label="Send Interval for Reporting Group 2" max="65535" min="0" type="int" units="seconds" value="600">
|
||||
<Help>
|
||||
Defines the time interval when the defined report for group 2 is sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="113" genre="config" label="Send Interval for Reporting Group 3" units="seconds" min="0" max="65535" value="600">
|
||||
<Value genre="config" index="113" label="Send Interval for Reporting Group 3" max="65535" min="0" type="int" units="seconds" value="600">
|
||||
<Help>
|
||||
Defines the time interval when the defined report for group 3 is sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" index="252" genre="config" label="Configuration Locked" units="" min="0" max="1" size="1" value="0">
|
||||
<Value genre="config" index="252" label="Configuration Locked" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Enable/disable Configuration Locked</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="int" index="253" genre="config" label="Enter Meter Calibration Mode" units="" min="0" max="1" size="4" value="0" write_only="true">
|
||||
<Value genre="config" index="253" label="Enter Meter Calibration Mode" max="1" min="0" size="4" type="int" units="" value="0" write_only="true">
|
||||
<Help>Enter Meter Calibration Mode</Help>
|
||||
</Value>
|
||||
<Value type="short" index="254" genre="config" label="Device tag" units="" min="0" max="65535" value="0">
|
||||
</Value>
|
||||
<Value genre="config" index="254" label="Device tag" max="65535" min="0" type="short" units="" value="0">
|
||||
<Help>
|
||||
Device tag.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="button" index="255" genre="config" label="Reset device" units="" write_only="true">
|
||||
<Value genre="config" index="255" label="Reset device" type="button" units="" write_only="true">
|
||||
<Help>Reset to the default configuration.</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="5" label="LifeLine"/>
|
||||
<Group index="1" label="LifeLine" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
Aeotec DSC12104 Micro Smart Energy Switch
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584526
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="1">
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="short" index="2" genre="config" label="Blinking behavior" units="" min="0" max="65535" write_only="true" value="0">
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="1">
|
||||
<!--
|
||||
Aeotec DSC13104 Micro Smart Energy Illuminator
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584519
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="short" index="2" genre="config" label="Make SEI blink" size="2" min="0" max="65535" value="0">
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="3">
|
||||
<!--
|
||||
Aeotec DSC14104 Micro Motor Controller
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584516
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="int" index="1" genre="config" label="Motor start delay time" units="ms" size="4" value="0">
|
||||
|
|
|
@ -1,53 +1,69 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
<Product Revision="4" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0086:0012:0003</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/aeotec/dsc18103.png</MetaDataItem>
|
||||
<MetaDataItem id="0012" name="ZWProductPage" type="0003">https://products.z-wavealliance.org/products/775/</MetaDataItem>
|
||||
<MetaDataItem id="0012" name="FrequencyName" type="0003">U.S. / Canada / Mexico / CEPT (Europe) / Australia / New Zealand</MetaDataItem>
|
||||
<MetaDataItem name="Name">Micro Smart Energy Switch G2</MetaDataItem>
|
||||
<MetaDataItem name="Description">It has long been thought that a house becomes a home when we make it reflect who we are, when we personalise it, when we fill it with objects we treasure. And all of that remains true, but it no longer needs to be just the objects we put in our home that personalises it. Like the music that gently fills the background of your favourite restaurant, Aeotec’s Micro Switches create the perfect ambiance for your home, and then some. They also give you the perfect control and the perfect, intelligent automation.
|
||||
|
||||
Across three different Micro controllers, each one letting you perfect everything from your home’s lights to its appliances and to its motorised doors and curtains, you’ll find that the same magic has been built right into the tiny body of each switch.</MetaDataItem>
|
||||
<MetaDataItem id="0012" name="Identifier" type="0003">DSC18103-ZWAU</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://aeotec.com/z-wave-in-wall-switches</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="2">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/708/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="3">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/767/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="4">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/775/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<!--
|
||||
Aeotec DSC18103 Micro Smart Switch (2nd Edition)
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584524
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="1" genre="config" label="Report type" units="" min="0" max="1" size="1" value="0">
|
||||
<Value genre="config" index="1" label="Report type" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
Defines the contents of Multilevel Sensor Report after Multilevel Sensor Get received.
|
||||
</Help>
|
||||
<Item label="Power" value="0" />
|
||||
<Item label="Voltage" value="1" />
|
||||
<Item label="Power" value="0"/>
|
||||
<Item label="Voltage" value="1"/>
|
||||
</Value>
|
||||
<Value type="short" index="2" genre="config" label="Blinking behavior" units="" min="0" max="65535" write_only="true" value="0">
|
||||
<Value genre="config" index="2" label="Blinking behavior" max="65535" min="0" type="short" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
This is actually a double byte value. The LSB defines the total time the device needs to blink in seconds. The MSB defines the on/off interval of the blink in tenths of seconds.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" index="80" genre="config" label="Notification status" units="" size="1" value="0">
|
||||
<Value genre="config" index="80" label="Notification status" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
Enables automatic notifications to associated devices whenever there is a state change.
|
||||
</Help>
|
||||
<Item label="None" value="0" />
|
||||
<Item label="Hail" value="1" />
|
||||
<Item label="Basic" value="2" />
|
||||
<Item label="None" value="0"/>
|
||||
<Item label="Hail" value="1"/>
|
||||
<Item label="Basic" value="2"/>
|
||||
</Value>
|
||||
<Value type="bool" index="90" genre="config" label="Enable Wattage Reports" units="" value="0">
|
||||
<Value genre="config" index="90" label="Enable Wattage Reports" type="bool" units="" value="0">
|
||||
<Help>
|
||||
Enable/disable Wattage threshold and percent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="91" genre="config" label="Wattage threshold" units="watts" min="0" max="32000" value="50">
|
||||
<Value genre="config" index="91" label="Wattage threshold" max="32000" min="0" type="short" units="watts" value="50">
|
||||
<Help>
|
||||
The minimum change in wattage for a report to be sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="92" genre="config" label="Wattage threshold percent" units="%" min="0" max="99" value="10">
|
||||
<Value genre="config" index="92" label="Wattage threshold percent" max="99" min="0" type="byte" units="%" value="10">
|
||||
<Help>
|
||||
Minimum change in percent of wattage to send a report.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="button" index="100" genre="config" label="Default Group Reports" units="" write_only="true" value="0" affects="101,102,103">
|
||||
<Value affects="101,102,103" genre="config" index="100" label="Default Group Reports" type="button" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
Set report types for groups 1, 2 and 3 to default. Reverts to 0
|
||||
after set.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="101" genre="config" label="Report type G1" units="" value="8">
|
||||
<Value genre="config" index="101" label="Report type G1" type="int" units="" value="8">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 1. 2 is multisensor report. 4 is meter report for watts. 8 is meter report for kilowatts.
|
||||
Value 1 (msb) Reserved
|
||||
|
@ -69,7 +85,7 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584524
|
|||
Multilevel Sensor Report Command(wattage) automatically.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="102" genre="config" label="Report type G2" units="" value="0">
|
||||
<Value genre="config" index="102" label="Report type G2" type="int" units="" value="0">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 2. 2 is multisensor report. 4 is meter report for watts. 8 is meter report for kilowatts.
|
||||
Value 1 (msb) Reserved
|
||||
|
@ -91,7 +107,7 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584524
|
|||
Multilevel Sensor Report Command(wattage) automatically.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="103" genre="config" label="Report type G3" units="" value="0">
|
||||
<Value genre="config" index="103" label="Report type G3" type="int" units="" value="0">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 3. 2 is multisensor report. 4 is meter report for watts. 8 is meter report for kilowatts.
|
||||
Value 1 (msb) Reserved
|
||||
|
@ -113,43 +129,41 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584524
|
|||
Multilevel Sensor Report Command(wattage) automatically.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="button" index="110" genre="config" label="Default Group Time" units="" write_only="true" value="0" affects="111,112,113">
|
||||
<Value affects="111,112,113" genre="config" index="110" label="Default Group Time" type="button" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
Set time interval for sending reports for groups 1, 2 and 3 to default.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="111" genre="config" label="Send interval G1" units="seconds" min="0" max="65535" value="600">
|
||||
<Value genre="config" index="111" label="Send interval G1" max="65535" min="0" type="int" units="seconds" value="600">
|
||||
<Help>
|
||||
Defines the time interval when the defined report for group 1 is sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="112" genre="config" label="Send interval G2" units="seconds" min="0" max="65535" value="600">
|
||||
<Value genre="config" index="112" label="Send interval G2" max="65535" min="0" type="int" units="seconds" value="600">
|
||||
<Help>
|
||||
Defines the time interval when the defined report for group 2 is sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="113" genre="config" label="Send interval G3" units="seconds" min="0" max="65535" value="600">
|
||||
<Value genre="config" index="113" label="Send interval G3" max="65535" min="0" type="int" units="seconds" value="600">
|
||||
<Help>
|
||||
Defines the time interval when the defined report for group 3 is sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="254" genre="config" label="Device tag" units="" min="0" max="65535" value="0">
|
||||
<Value genre="config" index="254" label="Device tag" max="65535" min="0" type="short" units="" value="0">
|
||||
<Help>
|
||||
Device tag.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="button" index="255" genre="config" label="Reset device" units="" write_only="true" value="0">
|
||||
<Value genre="config" index="255" label="Reset device" type="button" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
Reset to the default configuration.
|
||||
</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="5" label="Lifeline" />
|
||||
<Group index="1" label="Lifeline" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
||||
|
|
|
@ -1,25 +1,40 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
<Product Revision="5" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0086:0013:0003</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/aeotec/dsc19103.png</MetaDataItem>
|
||||
<MetaDataItem id="0013" name="ZWProductPage" type="0003">https://products.z-wavealliance.org/products/774/</MetaDataItem>
|
||||
<MetaDataItem name="Name">Micro Smart Energy Illuminator G2</MetaDataItem>
|
||||
<MetaDataItem id="0013" name="FrequencyName" type="0003">U.S. / Canada / Mexico / CEPT (Europe) / Australia / New Zealand</MetaDataItem>
|
||||
<MetaDataItem name="Description">With so many new-generation, energy-saving lights now available for your home, dimming lights isn’t as straightforward as it used to be. There’s no one type of light any more. Aeotec’s plug-in Smart Energy Illuminator is, however, compatible with as many dimmable lights as possible.
|
||||
|
||||
Our Smart Energy Illuminator has been designed to work out of the box with halogen lamp, sodium and tungsten lights. It’s also capable of being plugged in to other types of lights that work by reducing the amount of electricity being passed to their transformer. This includes select LED lights.</MetaDataItem>
|
||||
<MetaDataItem id="0013" name="Identifier" type="0003">DSC19103-ZWAU</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://aeotec.com/z-wave-in-wall-switches</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="3">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/707/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="4">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/766/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="5">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/774/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<!--
|
||||
Aeotec DSC19103 Micro Smart Dimmer (2nd Edition)
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584517
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="short" index="2" genre="config" label="Blinking behavior" units="" min="0" max="65535" write_only="true" value="0">
|
||||
<Value genre="config" index="2" label="Blinking behavior" max="65535" min="0" type="short" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
This is actually a double byte value. The LSB defines the total time the device needs to blink in seconds. The MSB defines the on/off interval of the blink in tenths of seconds.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" index="3" genre="config" label="Current Overload Protection" size="1" value="0">
|
||||
<Value genre="config" index="3" label="Current Overload Protection" size="1" type="list" value="0">
|
||||
<Help>
|
||||
Current Overload Protection. Load will be closed when 3
|
||||
the Current more than 2.7A and the time more than 2
|
||||
minutes
|
||||
</Help>
|
||||
<Item label="Disable" value="0" />
|
||||
<Item label="Enable" value="1" />
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<!-- This is only present in Firmware 1.20
|
||||
<Value type="list" index="13" genre="config" label="Enable CRC16 Encapsulation" size="1" value="0">
|
||||
|
@ -27,36 +42,36 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584517
|
|||
<Item label="Enable" value="1" />
|
||||
</Value>
|
||||
-->
|
||||
<Value type="list" index="80" genre="config" label="Notification status" units="" size="1" value="0">
|
||||
<Value genre="config" index="80" label="Notification status" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
Enables automatic notifications to associated devices whenever there is a state change.
|
||||
</Help>
|
||||
<Item label="None" value="0" />
|
||||
<Item label="Hail" value="1" />
|
||||
<Item label="Basic" value="2" />
|
||||
<Item label="None" value="0"/>
|
||||
<Item label="Hail" value="1"/>
|
||||
<Item label="Basic" value="2"/>
|
||||
</Value>
|
||||
<Value type="bool" index="90" genre="config" label="Enable Wattage Reports" units="" value="0">
|
||||
<Value genre="config" index="90" label="Enable Wattage Reports" type="bool" units="" value="0">
|
||||
<Help>
|
||||
Enable/disable Wattage threshold and percent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="91" genre="config" label="Wattage threshold" units="watts" min="0" max="32000" value="50">
|
||||
<Value genre="config" index="91" label="Wattage threshold" max="32000" min="0" type="short" units="watts" value="50">
|
||||
<Help>
|
||||
The minimum change in wattage for a report to be sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="92" genre="config" label="Wattage threshold percent" units="%" min="0" max="99" value="10">
|
||||
<Value genre="config" index="92" label="Wattage threshold percent" max="99" min="0" type="byte" units="%" value="10">
|
||||
<Help>
|
||||
Minimum change in percent of wattage to send a report.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="button" index="100" genre="config" label="Default Group Reports" units="" write_only="true" value="0" affects="101,102,103">
|
||||
<Value affects="101,102,103" genre="config" index="100" label="Default Group Reports" type="button" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
Set report types for groups 1, 2 and 3 to default. Reverts to 0
|
||||
after set.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="101" genre="config" label="Report type G1" units="" value="8">
|
||||
<Value genre="config" index="101" label="Report type G1" type="int" units="" value="8">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 1. 2 is multisensor report. 4 is meter report for watts. 8 is meter report for kilowatts.
|
||||
Value 1 (msb) Reserved
|
||||
|
@ -78,7 +93,7 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584517
|
|||
Multilevel Sensor Report Command(wattage) automatically.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="102" genre="config" label="Report type G2" units="" value="0">
|
||||
<Value genre="config" index="102" label="Report type G2" type="int" units="" value="0">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 2. 2 is multisensor report. 4 is meter report for watts. 8 is meter report for kilowatts.
|
||||
Value 1 (msb) Reserved
|
||||
|
@ -100,7 +115,7 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584517
|
|||
Multilevel Sensor Report Command(wattage) automatically.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="103" genre="config" label="Report type G3" units="" value="0">
|
||||
<Value genre="config" index="103" label="Report type G3" type="int" units="" value="0">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 3. 2 is multisensor report. 4 is meter report for watts. 8 is meter report for kilowatts.
|
||||
Value 1 (msb) Reserved
|
||||
|
@ -122,32 +137,32 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584517
|
|||
Multilevel Sensor Report Command(wattage) automatically.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="button" index="110" genre="config" label="Default Group Time" units="" write_only="true" value="0" affects="111,112,113">
|
||||
<Value affects="111,112,113" genre="config" index="110" label="Default Group Time" type="button" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
Set time interval for sending reports for groups 1, 2 and 3 to default.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="111" genre="config" label="Send interval G1" units="seconds" min="0" max="65535" value="600">
|
||||
<Value genre="config" index="111" label="Send interval G1" max="65535" min="0" type="int" units="seconds" value="600">
|
||||
<Help>
|
||||
Defines the time interval when the defined report for group 1 is sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="112" genre="config" label="Send interval G2" units="seconds" min="0" max="65535" value="600">
|
||||
<Value genre="config" index="112" label="Send interval G2" max="65535" min="0" type="int" units="seconds" value="600">
|
||||
<Help>
|
||||
Defines the time interval when the defined report for group 2 is sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="113" genre="config" label="Send interval G3" units="seconds" min="0" max="65535" value="600">
|
||||
<Value genre="config" index="113" label="Send interval G3" max="65535" min="0" type="int" units="seconds" value="600">
|
||||
<Help>
|
||||
Defines the time interval when the defined report for group 3 is sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" index="120" genre="config" label="External Button Mode" size="1" value="255">
|
||||
<Value genre="config" index="120" label="External Button Mode" size="1" type="list" value="255">
|
||||
<Help>Turn external button mode</Help>
|
||||
<Item label="Momentary Button" value="0" />
|
||||
<Item label="2 State Switch" value="1" />
|
||||
<Item label="3 way Switch" value="2" />
|
||||
<Item label="Unidentified Mode" value="255" />
|
||||
<Item label="Momentary Button" value="0"/>
|
||||
<Item label="2 State Switch" value="1"/>
|
||||
<Item label="3 way Switch" value="2"/>
|
||||
<Item label="Unidentified Mode" value="255"/>
|
||||
</Value>
|
||||
<!-- This is only present in Firmware 1.20
|
||||
<Value type="list" genre="config" index="252" label="Lock/Unlock Configuration" min="0" max="1" size="1" value="0">
|
||||
|
@ -156,24 +171,22 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584517
|
|||
<Item label="Lock" value="1"/>
|
||||
</Value>
|
||||
-->
|
||||
<Value type="short" index="254" genre="config" label="Device tag" units="" min="0" max="65535" value="0">
|
||||
<Value genre="config" index="254" label="Device tag" max="65535" min="0" type="short" units="" value="0">
|
||||
<Help>
|
||||
Device tag.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="button" index="255" genre="config" label="Reset device" units="" write_only="true" value="0">
|
||||
<Value genre="config" index="255" label="Reset device" type="button" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
Reset to the default configuration.
|
||||
</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="2">
|
||||
<Group index="1" max_associations="5" label="LifeLine"/>
|
||||
<Group index="2" max_associations="5" label="Reports" auto="true" />
|
||||
<Group index="1" label="LifeLine" max_associations="5"/>
|
||||
<Group auto="true" index="2" label="Reports" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
||||
|
|
|
@ -1,13 +1,29 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
<Product Revision="4" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0086:0018:0003</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/aeotec/dsc24.png</MetaDataItem>
|
||||
<MetaDataItem id="0018" name="ZWProductPage" type="0003">https://products.z-wavealliance.org/products/778/</MetaDataItem>
|
||||
<MetaDataItem name="Description">The Aeotec Smart Energy Switch is a low-cost Z-Wave appliance switch which can report immediate wattage energy usage or kWh energy usage over a period of time. It can also be controlled by other Z-Wave devices to turn on/off to save electricity when appropriate.
|
||||
|
||||
With an unobtrusive small form factor, the Aeon Labs Smart Energy Switch will not block other nearby AC outlets. It is available in matte white.</MetaDataItem>
|
||||
<MetaDataItem id="0018" name="Identifier" type="0003">DSC24-ZWAU</MetaDataItem>
|
||||
<MetaDataItem id="0018" name="FrequencyName" type="0003">U.S. / Canada / Mexico / CEPT (Europe) / Australia / New Zealand</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://aeotec.com/z-wave-plug-in-switch</MetaDataItem>
|
||||
<MetaDataItem name="Name">Smart Energy Switch G2</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="2">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/712/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="3">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/770/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="4">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/778/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<!--
|
||||
Aeotec DSC24 Smart Switch (2nd Edition)
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584528
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Protocol refreshonnodeinfoframe="false"/>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="short" index="2" genre="config" label="Blinking behavior" units="" min="257" max="65535" size="2" value="3850">
|
||||
<Value genre="config" index="2" label="Blinking behavior" max="65535" min="257" size="2" type="short" units="" value="3850">
|
||||
<Help>
|
||||
Configuration Value 1: 1-255
|
||||
Configuration Value 1 is to Specify the time that Smart Switch need blink, The unit is Second;
|
||||
|
@ -15,40 +31,40 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584528
|
|||
Configuration Value 2 is to Specify the Cycle of on/off, the unit of it is 0.1 second.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" index="3" genre="config" label="Current Overload Protection" units="" min="0" max="1" size="1" value="0">
|
||||
<Value genre="config" index="3" label="Current Overload Protection" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Load will be closed when the Current overruns (EU 16.2A) for more than 2 minutes</Help>
|
||||
<Item label="Deactivate Overload Protection (Default)" value="0"/>
|
||||
<Item label="Active Overload Protection" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="20" genre="config" label="Output Load Status" units="" min="0" max="2" size="1" value="0">
|
||||
<Value genre="config" index="20" label="Output Load Status" max="2" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Configure the output load status after re-power on.</Help>
|
||||
<Item label="Last status (Default)" value="0"/>
|
||||
<Item label="Always on" value="1"/>
|
||||
<Item label="Always off" value="2"/>
|
||||
</Value>
|
||||
<Value type="list" index="80" genre="config" label="Notification status" units="" min="0" max="2" size="1" value="0">
|
||||
</Value>
|
||||
<Value genre="config" index="80" label="Notification status" max="2" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Defines the automated status notification of an associated device when status changes</Help>
|
||||
<Item label="Nothing" value="0" />
|
||||
<Item label="Hail" value="1" />
|
||||
<Item label="Basic" value="2" />
|
||||
</Value>
|
||||
<Value type="bool" index="90" genre="config" label="Enables/disables parameter 91/92" units="" value="0">
|
||||
<Item label="Nothing" value="0"/>
|
||||
<Item label="Hail" value="1"/>
|
||||
<Item label="Basic" value="2"/>
|
||||
</Value>
|
||||
<Value genre="config" index="90" label="Enables/disables parameter 91/92" type="bool" units="" value="0">
|
||||
<Help>
|
||||
Enable/disable Wattage threshold and percent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="91" genre="config" label="Minimum Change to send Report (Watt)" units="watts" min="0" max="32000" size="2" value="25">
|
||||
<Value genre="config" index="91" label="Minimum Change to send Report (Watt)" max="32000" min="0" size="2" type="short" units="watts" value="25">
|
||||
<Help>The value represents the minimum change in wattage for a Report to be sent (default 25 W)</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="92" genre="config" label="Minimum Change to send Report (%)" units="%" min="0" max="100" value="5">
|
||||
<Value genre="config" index="92" label="Minimum Change to send Report (%)" max="100" min="0" type="byte" units="%" value="5">
|
||||
<Help>The value represents the minimum percentage change in wattage for a Report to be sent (Default 5)</Help>
|
||||
</Value>
|
||||
<Value type="button" index="100" genre="config" label="Default Group Reports" units="" write_only="true" affects="101,102,103">
|
||||
<Value affects="101,102,103" genre="config" index="100" label="Default Group Reports" type="button" units="" write_only="true">
|
||||
<Help>
|
||||
Set report types for groups 1, 2 and 3 to default.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="101" genre="config" label="Report type sent in Reporting Group 1" units="" value="4">
|
||||
<Value genre="config" index="101" label="Report type sent in Reporting Group 1" type="int" units="" value="4">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 1. 2 is multisensor report. 4 is meter report for watts. 8 is meter report for kilowatts.
|
||||
Value 1 (msb) Reserved
|
||||
|
@ -70,7 +86,7 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584528
|
|||
Multilevel Sensor Report Command(wattage) automatically.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="102" genre="config" label="Report type sent in Reporting Group 2" units="" value="8">
|
||||
<Value genre="config" index="102" label="Report type sent in Reporting Group 2" type="int" units="" value="8">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 2. 2 is multisensor report. 4 is meter report for watts. 8 is meter report for kilowatts.
|
||||
Value 1 (msb) Reserved
|
||||
|
@ -92,7 +108,7 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584528
|
|||
Multilevel Sensor Report Command(wattage) automatically.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="103" genre="config" label="Report type sent in Reporting Group 3" units="" value="0">
|
||||
<Value genre="config" index="103" label="Report type sent in Reporting Group 3" type="int" units="" value="0">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 3. 2 is multisensor report. 4 is meter report for watts. 8 is meter report for kilowatts.
|
||||
Value 1 (msb) Reserved
|
||||
|
@ -114,54 +130,52 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584528
|
|||
Multilevel Sensor Report Command(wattage) automatically.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="button" index="110" genre="config" label="Set 111-113 to default" units="" write_only="true" value="0" affects="111,112,113">
|
||||
<Value affects="111,112,113" genre="config" index="110" label="Set 111-113 to default" type="button" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
Set time interval for sending reports for groups 1, 2 and 3 to default.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="111" genre="config" label="Send Interval for Reporting Group 1" units="seconds" min="0" max="65535" value="600">
|
||||
<Value genre="config" index="111" label="Send Interval for Reporting Group 1" max="65535" min="0" type="int" units="seconds" value="600">
|
||||
<Help>
|
||||
Defines the time interval when the defined report for group 1 is sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="112" genre="config" label="Send Interval for Reporting Group 2" units="seconds" min="0" max="65535" value="600">
|
||||
<Value genre="config" index="112" label="Send Interval for Reporting Group 2" max="65535" min="0" type="int" units="seconds" value="600">
|
||||
<Help>
|
||||
Defines the time interval when the defined report for group 2 is sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="113" genre="config" label="Send Interval for Reporting Group 3" units="seconds" min="0" max="65535" value="600">
|
||||
<Value genre="config" index="113" label="Send Interval for Reporting Group 3" max="65535" min="0" type="int" units="seconds" value="600">
|
||||
<Help>
|
||||
Defines the time interval when the defined report for group 3 is sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" index="200" genre="config" label="Partner ID" units="" min="0" max="1" size="1" value="0">
|
||||
<Value genre="config" index="200" label="Partner ID" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Partner ID</Help>
|
||||
<Item label="Aeon Labs Standard (Default)" value="0"/>
|
||||
<Item label="AT&T" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="252" genre="config" label="Configuration Locked" units="" min="0" max="1" size="1" value="0">
|
||||
<Value genre="config" index="252" label="Configuration Locked" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Enable/disable Configuration Locked</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="short" index="254" genre="config" label="Device tag" units="" min="0" max="65535" value="0">
|
||||
<Value genre="config" index="254" label="Device tag" max="65535" min="0" type="short" units="" value="0">
|
||||
<Help>
|
||||
Device tag.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="button" index="255" genre="config" label="Reset device" units="" write_only="true">
|
||||
<Value genre="config" index="255" label="Reset device" type="button" units="" write_only="true">
|
||||
<Help>
|
||||
Reset to the default configuration.
|
||||
</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="2">
|
||||
<Group index="1" max_associations="5" label="LifeLine"/>
|
||||
<Group index="2" max_associations="5" label="Retransmit Switch CC" />
|
||||
<Group index="1" label="LifeLine" max_associations="5"/>
|
||||
<Group index="2" label="Retransmit Switch CC" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
||||
|
|
|
@ -1,53 +1,66 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Aeotec DSC26103 Micro Switch (2nd Edition)
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584525
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
--><Product Revision="4" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0086:001A:0003</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/aeotec/dsc26103.png</MetaDataItem>
|
||||
<MetaDataItem id="001A" name="ZWProductPage" type="0003">https://products.z-wavealliance.org/products/776/</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://aeotec.com/z-wave-in-wall-switches</MetaDataItem>
|
||||
<MetaDataItem id="001A" name="FrequencyName" type="0003">U.S. / Canada / Mexico / CEPT (Europe) / Australia / New Zealand</MetaDataItem>
|
||||
<MetaDataItem name="Description">It has long been thought that a house becomes a home when we make it reflect who we are, when we personalise it, when we fill it with objects we treasure. And all of that remains true, but it no longer needs to be just the objects we put in our home that personalises it. Like the music that gently fills the background of your favourite restaurant, Aeotec’s Micro Switches create the perfect ambiance for your home, and then some. They also give you the perfect control and the perfect, intelligent automation.
|
||||
|
||||
Across three different Micro controllers, each one letting you perfect everything from your home’s lights to its appliances and to its motorised doors and curtains, you’ll find that the same magic has been built right into the tiny body of each switch.</MetaDataItem>
|
||||
<MetaDataItem name="Name">Micro Switch G2</MetaDataItem>
|
||||
<MetaDataItem id="001A" name="Identifier" type="0003">DSC26103-ZWAU</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="2">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/709/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="3">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/768/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="4">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/776/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="short" index="2" genre="config" label="Blinking behavior" units="" min="0" max="65535" write_only="true" value="0">
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="2" label="Blinking behavior" max="65535" min="0" type="short" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
This is actually a double byte value. The LSB defines the total time the device needs to blink in seconds. The MSB defines the on/off interval of the blink in tenths of seconds.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" index="80" genre="config" label="Notification status" units="" size="1" value="0">
|
||||
<Value genre="config" index="80" label="Notification status" size="1" type="list" units="" value="0">
|
||||
<Help>Enables automatic notifications to associated devices whenever there is a state change.</Help>
|
||||
<Item label="None" value="0" />
|
||||
<Item label="Hail" value="1" />
|
||||
<Item label="Basic" value="2" />
|
||||
</Value>
|
||||
<Value type="list" index="120" genre="config" label="Turn external button mode" units="" size="1" value="255">
|
||||
<Help>Turn external button mode</Help>
|
||||
<Item label="Momentary button" value="0" />
|
||||
<Item label="2 state switch" value="1" />
|
||||
<Item label="3 way switch" value="2" />
|
||||
<Item label="Unidentified" value="255" />
|
||||
<Item label="None" value="0"/>
|
||||
<Item label="Hail" value="1"/>
|
||||
<Item label="Basic" value="2"/>
|
||||
</Value>
|
||||
<Value type="list" index="200" genre="config" label="Partner ID" units="" min="0" max="1" size="1" value="0">
|
||||
<Value genre="config" index="120" label="Turn external button mode" size="1" type="list" units="" value="255">
|
||||
<Help>Turn external button mode</Help>
|
||||
<Item label="Momentary button" value="0"/>
|
||||
<Item label="2 state switch" value="1"/>
|
||||
<Item label="3 way switch" value="2"/>
|
||||
<Item label="Unidentified" value="255"/>
|
||||
</Value>
|
||||
<Value genre="config" index="200" label="Partner ID" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Partner ID</Help>
|
||||
<Item label="Aeon Labs Standard (Default)" value="0"/>
|
||||
<Item label="AT&T" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="252" genre="config" label="Configuration Locked" units="" min="0" max="1" size="1" value="0">
|
||||
<Value genre="config" index="252" label="Configuration Locked" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Enable/disable Configuration Locked</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="short" index="254" genre="config" label="Device tag" units="" min="0" max="65535" value="0">
|
||||
<Value genre="config" index="254" label="Device tag" max="65535" min="0" type="short" units="" value="0">
|
||||
<Help>Device tag.</Help>
|
||||
</Value>
|
||||
<Value type="button" index="255" genre="config" label="Reset device" units="" write_only="true" value="0">
|
||||
<Value genre="config" index="255" label="Reset device" type="button" units="" value="0" write_only="true">
|
||||
<Help>Reset to the default configuration.</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="2">
|
||||
<Group index="1" max_associations="5" label="Lifeline" />
|
||||
<Group index="2" max_associations="5" label="Retransmit Switch CC" />
|
||||
<Group index="1" label="Lifeline" max_associations="5"/>
|
||||
<Group index="2" label="Retransmit Switch CC" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
||||
|
|
|
@ -1,57 +1,70 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Aeotec DSC27103 Micro Dimmer (2nd Edition)
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584518
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
--><Product Revision="4" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0086:001B:0003</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/aeotec/dsc27103.png</MetaDataItem>
|
||||
<MetaDataItem id="001B" name="ZWProductPage" type="0003">https://products.z-wavealliance.org/products/773/</MetaDataItem>
|
||||
<MetaDataItem name="ProductPage">http://aeotec.com/z-wave-in-wall-switches</MetaDataItem>
|
||||
<MetaDataItem name="Name">Micro Illuminator G2</MetaDataItem>
|
||||
<MetaDataItem id="001B" name="Identifier" type="0003">DSC27103-ZWAU</MetaDataItem>
|
||||
<MetaDataItem name="Description">It has long been thought that a house becomes a home when we make it reflect who we are, when we personalise it, when we fill it with objects we treasure. And all of that remains true, but it no longer needs to be just the objects we put in our home that personalises it. Like the music that gently fills the background of your favourite restaurant, Aeotec’s Micro Switches create the perfect ambiance for your home, and then some. They also give you the perfect control and the perfect, intelligent automation.
|
||||
|
||||
Across three different Micro controllers, each one letting you perfect everything from your home’s lights to its appliances and to its motorised doors and curtains, you’ll find that the same magic has been built right into the tiny body of each switch.</MetaDataItem>
|
||||
<MetaDataItem id="001B" name="FrequencyName" type="0003">U.S. / Canada / Mexico / CEPT (Europe) / Australia / New Zealand</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="2">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/706/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="3">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/765/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="4">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/773/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="short" index="2" genre="config" label="Make SEI blink" size="2" min="0" max="65535" value="0">
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="2" label="Make SEI blink" max="65535" min="0" size="2" type="short" value="0">
|
||||
<Help>
|
||||
Configuration Value 1 is to Specify the time that SEI need blink (0-255), the unit is second;
|
||||
Configuration Value 2 is to Specify the Cycle of on/off (0-255), the unit of it is 0.1 second.</Help>
|
||||
</Value>
|
||||
<Value type="list" index="13" genre="config" label="CRC16 encapsulation" units="" min="0" max="1" size="1" value="0">
|
||||
</Value>
|
||||
<Value genre="config" index="13" label="CRC16 encapsulation" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Enable/Disable CRC16 encapsulation</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="80" genre="config" label="Notification status" units="" min="0" max="2" size="1" value="0">
|
||||
<Value genre="config" index="80" label="Notification status" max="2" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Defines the automated status notification of an associated device when status changes</Help>
|
||||
<Item label="Nothing" value="0" />
|
||||
<Item label="Hail" value="1" />
|
||||
<Item label="Basic" value="2" />
|
||||
</Value>
|
||||
<Value type="list" index="120" genre="config" label="Turn external button" units="" min="0" max="255" size="1" value="255">
|
||||
<Help>Turn external button mode</Help>
|
||||
<Item label="Momentary button" value="0" />
|
||||
<Item label="2 state switch" value="1" />
|
||||
<Item label="3 way switch " value="2" />
|
||||
<Item label="Unidentified" value="255" />
|
||||
<Item label="Nothing" value="0"/>
|
||||
<Item label="Hail" value="1"/>
|
||||
<Item label="Basic" value="2"/>
|
||||
</Value>
|
||||
<Value type="list" index="200" genre="config" label="Partner ID" units="" min="0" max="1" size="1" value="0">
|
||||
<Value genre="config" index="120" label="Turn external button" max="255" min="0" size="1" type="list" units="" value="255">
|
||||
<Help>Turn external button mode</Help>
|
||||
<Item label="Momentary button" value="0"/>
|
||||
<Item label="2 state switch" value="1"/>
|
||||
<Item label="3 way switch " value="2"/>
|
||||
<Item label="Unidentified" value="255"/>
|
||||
</Value>
|
||||
<Value genre="config" index="200" label="Partner ID" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Partner ID</Help>
|
||||
<Item label="Aeon Labs Standard (Default)" value="0"/>
|
||||
<Item label="AT&T" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="252" genre="config" label="Configuration Locked" units="" min="0" max="1" size="1" value="0">
|
||||
<Value genre="config" index="252" label="Configuration Locked" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Enable/disable Configuration Locked</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="short" index="254" genre="config" label="Device tag" units="" min="0" max="65535" value="0">
|
||||
<Value genre="config" index="254" label="Device tag" max="65535" min="0" type="short" units="" value="0">
|
||||
<Help>Device tag.</Help>
|
||||
</Value>
|
||||
<Value type="button" index="255" genre="config" label="Reset device" units="" write_only="true">
|
||||
<Value genre="config" index="255" label="Reset device" type="button" units="" write_only="true">
|
||||
<Help>Reset to the default configuration.</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
|
||||
<!-- Association Groups -->
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="5" label="Lifeline"/>
|
||||
<Group index="1" label="Lifeline" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
Aeotec DSC35103 Micro Double Switch
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584523
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="1">
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="short" index="2" genre="config" label="Blinking behavior" units="" min="0" max="65535" write_only="true" value="0">
|
||||
|
|
|
@ -1,27 +1,40 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
<Product Revision="5" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0086:0025:0004</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/aeotec/dsd37.png</MetaDataItem>
|
||||
<MetaDataItem id="0025" name="ZWProductPage" type="0004">https://products.z-wavealliance.org/products/1017/</MetaDataItem>
|
||||
<MetaDataItem id="0025" name="Identifier" type="0004">DSD37-ZWAU</MetaDataItem>
|
||||
<MetaDataItem id="0025" name="FrequencyName" type="0004">U.S. / Canada / Mexico / CEPT (Europe) / Australia / New Zealand</MetaDataItem>
|
||||
<MetaDataItem name="Name">Aeon Labs Range Extender DSD37-ZWAU</MetaDataItem>
|
||||
<MetaDataItem name="Description">Range Extender / Repeater</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="3">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/752/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="4">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/1004/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="5">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/1017/xml</Entry>
|
||||
</ChangeLog>
|
||||
</MetaData>
|
||||
<!--
|
||||
Aeotec DSD37-ZWUS Repeater
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584515
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="200" genre="config" label="Partner ID" size="1" max="1" min="0" value="0">
|
||||
<Help>Partner ID</Help>
|
||||
<Item value="0" label="Aeon Labs Standard (Default)"/>
|
||||
<Item value="1" label="Others"/>
|
||||
</Value>
|
||||
<Value type="short" index="254" genre="config" label="Device Tag" min="0" max="255" value="0">
|
||||
<Help>Device Tag</Help>
|
||||
</Value>
|
||||
<Value type="button" index="255" genre="config" label="Reset configuration settings to factory defaults" write_only="true" value="0" >
|
||||
<Help>Reset to factory defaults.</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="5" label="LifeLine"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="200" label="Partner ID" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Partner ID</Help>
|
||||
<Item label="Aeon Labs Standard (Default)" value="0"/>
|
||||
<Item label="Others" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="254" label="Device Tag" max="255" min="0" type="short" value="0">
|
||||
<Help>Device Tag</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="255" label="Reset configuration settings to factory defaults" type="button" value="0" write_only="true">
|
||||
<Help>Reset to factory defaults.</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" label="LifeLine" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
Aeotec ZW056 Doorbell Gen5
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584693
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="1">
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="byte" index="2" genre="config" label="doorbell ringtone repetitions" units="" min="1" max="255" value="2">
|
||||
|
|
|
@ -1,22 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
<Product Revision="4" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<!--
|
||||
Aeotec Garage ZW062 Door Controller
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584687
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- the Device Doesn't support Get for Alarm Class -->
|
||||
<CommandClass id="113" getsupported="false"/>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="byte" genre="config" instance="1" index="32" label="Startup ringtone" min="0" max="100" value="1" size="1">
|
||||
<Help>
|
||||
<CommandClass id="113">
|
||||
<Compatibility>
|
||||
<GetSupported>false</GetSupported>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="32" instance="1" label="Startup ringtone" max="100" min="0" size="1" type="byte" value="1">
|
||||
<Help>
|
||||
Configure the default startup ringtone.
|
||||
Value = 0, disable the Startup ringtone.
|
||||
Value = Others, Enable and select a startup ringtone for the Garage Door Controller
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="34" label="Sensor Calibration" min="0" max="1" value="0" size="1" write_only="true">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="34" instance="1" label="Sensor Calibration" max="1" min="0" size="1" type="list" value="0" write_only="true">
|
||||
<Help>
|
||||
Calibration Steps:
|
||||
1. Let the garage door move to full close position.
|
||||
2. Send this parameter (0x22) with value=1 to Garage Door Controller.
|
||||
|
@ -25,19 +28,19 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584687
|
|||
After the step 4 is completed, all calibration steps are complete.
|
||||
Note: This process should be implemented when the Garage Door Controller just only has one Sensor is installed on the garage door.
|
||||
</Help>
|
||||
<Item label="Normal" value="0"/>
|
||||
<Item label="Normal" value="0"/>
|
||||
<Item label="Do calibration" value="1"/>
|
||||
</Value>
|
||||
<Value type="short" genre="config" instance="1" index="35" label="Timeout of calibration steps" min="0" max="65000" value="30">
|
||||
<Help>Set the timeout of all calibration steps for the Sensor</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="36" label="Get the numbers of alarm music" size="1" value="5" read_only="true">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="35" instance="1" label="Timeout of calibration steps" max="65000" min="0" type="short" value="30">
|
||||
<Help>Set the timeout of all calibration steps for the Sensor</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="36" instance="1" label="Get the numbers of alarm music" read_only="true" size="1" type="byte" value="5">
|
||||
<Help>
|
||||
Get the numbers of alarm music. (not support Set CC)
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="37" label="Configure the alarm mode for when the garage door is opening" size="4" value="167905281">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="37" instance="1" label="Configure the alarm mode for when the garage door is opening" size="4" type="int" value="167905281">
|
||||
<Help>
|
||||
1, Value1: configure the frequency of blinking for the Alarm LEd, there are 10 levels that 1 to10 level, the minimum frequency is level 1 and the max frequency is level 10.
|
||||
2, Value2: configure the alarm sound (there are 4 types sound saved in EEPROM and user also can update it).
|
||||
3, Value3: configure the volume of alarm sound (there are 10 levels, the min volume is 1 level and the max volume is 10 levels).
|
||||
|
@ -48,9 +51,9 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584687
|
|||
+ 256 x volume
|
||||
+ 1 x alarm_mode
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="38" label="Configure the alarm mode when the garage door is closing" size="4" value="134416385">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="38" instance="1" label="Configure the alarm mode when the garage door is closing" size="4" type="int" value="134416385">
|
||||
<Help>
|
||||
1, Value1: configure the frequency of blinking for the Alarm LED, there are 10 levels that 1 to10 level, the minimum frequency is level 1 and the max frequency is level 10.
|
||||
2, Value2: configure the alarm sound (there are 4 types sound saved in EEPROM and user also can update it).
|
||||
3, Value3: configure the volume of alarm sound (there are 10 levels, the min volume is 1 level and the max volume is 10 levels).
|
||||
|
@ -61,9 +64,9 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584687
|
|||
+ 256 x volume
|
||||
+ 1 x alarm_mode
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="39" label="Configuration alarm mode when the garage door is in unknown state" size="4" value="100927488">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="39" instance="1" label="Configuration alarm mode when the garage door is in unknown state" size="4" type="int" value="100927488">
|
||||
<Help>
|
||||
1, Value1: configure the frequency of blinking for the Alarm LED, there are 10 levels that 1 to10 level, the minimum frequency is level 1 and the max frequency is level 10.
|
||||
2, Value2: configure the alarm sound (there are 4 types sound saved in EEPROM and user also can update it).
|
||||
3, Value3: configure the volume of alarm sound (there are 10 levels, the min volume is 1 level and the max volume is 10 levels).
|
||||
|
@ -74,9 +77,9 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584687
|
|||
+ 256 x volume
|
||||
+ 1 x alarm_mode
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="40" label="Configure the alarm mode when the garage door is in closed position" size="4" value="33883392">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="40" instance="1" label="Configure the alarm mode when the garage door is in closed position" size="4" type="int" value="33883392">
|
||||
<Help>
|
||||
1, Value1: configure the frequency of blinking for the Alarm LED, there are 10 levels that 1 to10 level, the minimum frequency is level 1 and the max frequency is level 10.
|
||||
2, Value2: configure the alarm sound (there are 4 types sound saved in EEPROM and user also can update it).
|
||||
3, Value3: configure the volume of alarm sound (there are 10 levels, the min volume is 1 level and the max volume is 10 levels).
|
||||
|
@ -87,84 +90,88 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584687
|
|||
+ 256 x volume
|
||||
+ 1 x alarm_mode
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" genre="config" index="41" label="Configuration report for the tamper switch State" size="4" value="0">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="41" label="Configuration report for the tamper switch State" size="4" type="list" value="0">
|
||||
<Help>
|
||||
Note:
|
||||
1. The Garage Door Controller will send this configuration report to gateway controller or associated nodes automatically if the Sensor is removed.
|
||||
2. You can send the value=0x55555555 of this parameter to controller to relieve the alarm state.
|
||||
</Help>
|
||||
<Item label="Sensor is not removed" value="0"/>
|
||||
<Item label="Sensor is removed" value="15"/>
|
||||
<Item label="Relieve the alarm state" value="1431655765"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" index="42" label="Configuration report for the battery state of Sensor" size="1" min="0" max="15" value="0">
|
||||
<Help>It will report the battery power state to associated nodes automatically when the battery power is in low battery.</Help>
|
||||
<Item label="Battery power is much more" value="0"/>
|
||||
<Item label="Battery power of Sensor is in low battery" value="15"/>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" index="43" label="Start playing or Stop playing the ringtone" min="0" max="100" value="0" write_only="true">
|
||||
<Help>
|
||||
<Item label="Sensor is not removed" value="0"/>
|
||||
<Item label="Sensor is removed" value="15"/>
|
||||
<Item label="Relieve the alarm state" value="1431655765"/>
|
||||
</Value>
|
||||
<Value genre="config" index="42" label="Configuration report for the battery state of Sensor" max="15" min="0" size="1" type="list" value="0">
|
||||
<Help>It will report the battery power state to associated nodes automatically when the battery power is in low battery.</Help>
|
||||
<Item label="Battery power is much more" value="0"/>
|
||||
<Item label="Battery power of Sensor is in low battery" value="15"/>
|
||||
</Value>
|
||||
<Value genre="config" index="43" label="Start playing or Stop playing the ringtone" max="100" min="0" type="byte" value="0" write_only="true">
|
||||
<Help>
|
||||
Value=0xff, stop playing ringtone.
|
||||
Value=1 to 100, start playing the ringtone that you selected.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="44" label="Test the volume of the current ringtone" size="1" min="1" max="10" value="1" read_only="true">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="44" instance="1" label="Test the volume of the current ringtone" max="10" min="1" read_only="true" size="1" type="byte" value="1">
|
||||
<Help>
|
||||
Value=1 to value=10, which map to the volume level 1 to level 10
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" genre="config" instance="1" index="45" label="Get the environment temperature" size="2" min="0" max="500" value="0" read_only="true">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="45" instance="1" label="Get the environment temperature" max="500" min="0" read_only="true" size="2" type="short" value="0">
|
||||
<Help>
|
||||
The temperature value contains one decimal point.
|
||||
E.g. If the report value=252(0x00FC), the temperature is 25.2.
|
||||
Rang is 0 to 500 (0 to 50.0).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" genre="config" index="47" label="Define the function of Button- or Button+" size="1" min="0" max="1" value="0">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="47" label="Define the function of Button- or Button+" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>
|
||||
Value=0, short pressing the Button +/- will be used to adjust the volume of sound. Long pressing the Button +/- will be used to switch the sound to the next.
|
||||
Value=1, short pressing the Button +/- will be used to switch the sound to the next. Long pressing the Button +/- will be used to adjust the volume of sound.
|
||||
</Help>
|
||||
<Item label="Volume" value="0"/>
|
||||
<Item label="Sound" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" index="80" label="Report type when the state of garage door is changed" size="1" min="0" max="2" value="2">
|
||||
<Help>It will send the Hail CC/configuration report CC when the state of garage door is changed</Help>
|
||||
<Item label="Reserved" value="0"/>
|
||||
<Item label="Hail" value="1"/>
|
||||
<Item label="Barrier operator" value="2"/>
|
||||
</Value>
|
||||
<Value type="list" index="241" genre="config" label="Pair the Sensor with Garage Door Controller" size="4" value="0">
|
||||
<Help>
|
||||
<Item label="Volume" value="0"/>
|
||||
<Item label="Sound" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="80" label="Report type when the state of garage door is changed" max="2" min="0" size="1" type="list" value="2">
|
||||
<Help>It will send the Hail CC/configuration report CC when the state of garage door is changed</Help>
|
||||
<Item label="Reserved" value="0"/>
|
||||
<Item label="Hail" value="1"/>
|
||||
<Item label="Barrier operator" value="2"/>
|
||||
</Value>
|
||||
<Value genre="config" index="241" label="Pair the Sensor with Garage Door Controller" size="4" type="list" value="0">
|
||||
<Help>
|
||||
Value=0x55555501, which will trigger to start the pairing of Sensor (installed on the top of the garage door), at this time, the Network LED on the Garage Door Controller will blink slowly and then short press Temper Switch back of the Sensor.
|
||||
If pairing is successful, the Network LED will stop blinking and the Garage Door Controller will send the configuration report with value=0x01FF to primary controller/gateway. Otherwise, repeat the operation.
|
||||
Note:
|
||||
1. If you do not press the Temper Switch when starting the pairing mode, the pairing status will keep for 8 second and then exit the pairing status automatically.
|
||||
2. The Sensor has been paired with the Garage Door Controller after factory.</Help>
|
||||
<Item label="Normal" value="0"/>
|
||||
<Item label="Start the pairing of Sensor" value="1431655681"/>
|
||||
<Item label="Pairing is successful" value="511"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" index="252" label="Lock/Unlock Configuration" min="0" max="1" size="1" value="0">
|
||||
<Help>Lock/ unlock all configuration parameters</Help>
|
||||
<Item label="Unlock" value="0"/>
|
||||
<Item label="Lock" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="255" genre="config" label="Reset To Factory Defaults" size="4" value="1" write_only="true">
|
||||
<Help>Reset to factory defaults</Help>
|
||||
<Item label="Reset to factory default setting" value="0"/>
|
||||
<Item label="Normal" value="1"/>
|
||||
<Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Basic set as report-->
|
||||
<CommandClass id="32" setasreport="true"/>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="2">
|
||||
<Group index="1" max_associations="5" label="Lifeline" />
|
||||
<Group index="2" max_associations="5" label="Retransmit Switch CC" />
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
<Item label="Normal" value="0"/>
|
||||
<Item label="Start the pairing of Sensor" value="1431655681"/>
|
||||
<Item label="Pairing is successful" value="511"/>
|
||||
</Value>
|
||||
<Value genre="config" index="252" label="Lock/Unlock Configuration" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Lock/ unlock all configuration parameters</Help>
|
||||
<Item label="Unlock" value="0"/>
|
||||
<Item label="Lock" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="255" label="Reset To Factory Defaults" size="4" type="list" value="1" write_only="true">
|
||||
<Help>Reset to factory defaults</Help>
|
||||
<Item label="Reset to factory default setting" value="0"/>
|
||||
<Item label="Normal" value="1"/>
|
||||
<Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Basic set as report-->
|
||||
<CommandClass id="32">
|
||||
<Compatibility>
|
||||
<SetAsReport>true</SetAsReport>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="2">
|
||||
<Group index="1" label="Lifeline" max_associations="5"/>
|
||||
<Group index="2" label="Retransmit Switch CC" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -1,107 +1,103 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Aeotec ZW074 MultiSensor Gen5
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584696
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="2" genre="config" label="Wake up 10 minutes on Power On" min="0" max="1" value="0" size="1">
|
||||
<Help>Stay awake for 10 minutes after batteries are inserted</Help>
|
||||
<Item label="No" value="0" />
|
||||
<Item label="Yes" value="1" />
|
||||
</Value>
|
||||
<Value type="short" index="3" genre="config" label="On time" units="seconds" min="1" max="15300" value="240">
|
||||
<Help>How long should the device associated to multi sensor keep state On before sending it Off command (if the value is bigger than 255, the value would be rounded to next integer in minutes)</Help>
|
||||
</Value>
|
||||
<Value type="list" index="4" genre="config" label="Enable Motion Sensor" min="0" max="1" value="1" size="1">
|
||||
<Help>Enable Motion Sensor</Help>
|
||||
<Item label="Disabled" value="0" />
|
||||
<Item label="Enabled" value="1" />
|
||||
</Value>
|
||||
<Value type="list" index="5" genre="config" label="Command Options" min="1" max="2" value="1" size="1">
|
||||
<Help>Which commands to send when PIR motion sensor triggered
|
||||
<!-- Aeon Labs Multi Sensor -->
|
||||
<Product Revision="2" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="2" label="Wake up 10 minutes on Power On" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Stay awake for 10 minutes after batteries are inserted</Help>
|
||||
<Item label="No" value="0"/>
|
||||
<Item label="Yes" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="3" label="On time" max="15300" min="1" type="short" units="seconds" value="240">
|
||||
<Help>How long should the device associated to multi sensor keep state On before sending it Off command (if the value is bigger than 255, the value would be rounded to next integer in minutes)</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="4" label="Enable Motion Sensor" max="1" min="0" size="1" type="list" value="1">
|
||||
<Help>Enable Motion Sensor</Help>
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Enabled" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="5" label="Command Options" max="2" min="1" size="1" type="list" value="1">
|
||||
<Help>Which commands to send when PIR motion sensor triggered
|
||||
OZW Ideal Value is Binary Sensor Report</Help>
|
||||
<Item label="Basic Set (default) " value="1" />
|
||||
<Item label="Binary Sensor Report" value="2" />
|
||||
</Value>
|
||||
<Value type="list" index="40" genre="config" label="Reporting Threshold" min="0" max="1" value="0" size="1">
|
||||
<Help>Enable/disable the selective reporting only when measurements reach a certain threshold or percentage
|
||||
<Item label="Basic Set (default) " value="1"/>
|
||||
<Item label="Binary Sensor Report" value="2"/>
|
||||
</Value>
|
||||
<Value genre="config" index="40" label="Reporting Threshold" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Enable/disable the selective reporting only when measurements reach a certain threshold or percentage
|
||||
set in the threshold settings. This is used to reduce network
|
||||
traffic.</Help>
|
||||
<Item label="Disabled" value="0" />
|
||||
<Item label="Enabled" value="1" />
|
||||
</Value>
|
||||
<Value type="short" index="41" genre="config" label="Temperature Reporting Threshold" units="%" min="0" max="39321" value="256" size="2">
|
||||
<Help>Threshold change in temperature to induce an automatic report.
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Enabled" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="41" label="Temperature Reporting Threshold" max="39321" min="0" size="2" type="short" units="%" value="256">
|
||||
<Help>Threshold change in temperature to induce an automatic report.
|
||||
Note:
|
||||
1. When the unit is Celsius, threshold=Value.
|
||||
2. When the unit is Fahrenheit, threshold=Value*1.8. The accuracy is 0.1.
|
||||
3. The high byte is the part of integer, the low byte is the fractional part.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="42" genre="config" label="Humidity Reporting Threshold" units="%" min="0" max="39321" value="1280" size="2">
|
||||
<Help>Threshold change in humidity to induce an automatic report.
|
||||
</Value>
|
||||
<Value genre="config" index="42" label="Humidity Reporting Threshold" max="39321" min="0" size="2" type="short" units="%" value="1280">
|
||||
<Help>Threshold change in humidity to induce an automatic report.
|
||||
Note:
|
||||
The accuracy is 0.1.
|
||||
The high byte is the part of integer, the low byte is the fractional part.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="43" genre="config" label="Luminance Reporting Threshold" units="LUX" min="0" max="65535" value="25600" size="2">
|
||||
<Help>Threshold change in luminance to induce an automatic report. </Help>
|
||||
</Value>
|
||||
<Value type="short" index="44" genre="config" label="Battery Reporting Threshold" units="%" min="0" max="39321" value="1280" size="2">
|
||||
<Help>Threshold change in battery level to induce an automatic report.
|
||||
</Value>
|
||||
<Value genre="config" index="43" label="Luminance Reporting Threshold" max="65535" min="0" size="2" type="short" units="LUX" value="25600">
|
||||
<Help>Threshold change in luminance to induce an automatic report. </Help>
|
||||
</Value>
|
||||
<Value genre="config" index="44" label="Battery Reporting Threshold" max="39321" min="0" size="2" type="short" units="%" value="1280">
|
||||
<Help>Threshold change in battery level to induce an automatic report.
|
||||
Note:
|
||||
The accuracy is 0.1.
|
||||
The high byte is the part of integer, the low byte is the fractional part.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" index="46" genre="config" label="Low Temp Alarm" min="0" max="1" value="0" size="1">
|
||||
<Help>Enable/disable to send the alarm report of low temperature(Less than 15 Degress C)
|
||||
</Value>
|
||||
<Value genre="config" index="46" label="Low Temp Alarm" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Enable/disable to send the alarm report of low temperature(Less than 15 Degress C)
|
||||
</Help>
|
||||
<Item label="Disabled" value="0" />
|
||||
<Item label="Enabled" value="1" />
|
||||
</Value>
|
||||
<Value type="int" index="101" genre="config" label="Group 1 Reports" value="255">
|
||||
<Help>Which reports need to send automatically in timing intervals for group 1. Bitsets: 0 -> Battery report, 5 -> Temperature, 6 -> Humidity, 7 -> Luminosity</Help>
|
||||
</Value>
|
||||
<Value type="int" index="102" genre="config" label="Group 2 Reports" value="0">
|
||||
<Help>Which reports need to send automatically in timing intervals for group 2. Bitsets: 0 -> Battery report, 5 -> Temperature, 6 -> Humidity, 7 -> Luminosity</Help>
|
||||
</Value>
|
||||
<Value type="int" index="103" genre="config" label="Group 3 Reports" value="0">
|
||||
<Help>Which reports need to send automatically in timing intervals for group 3. Bitsets: 0 -> Battery report, 5 -> Temperature, 6 -> Humidity, 7 -> Luminosity</Help>
|
||||
</Value>
|
||||
<Value type="int" index="111" genre="config" label="Group 1 Interval" units="seconds" min="1" max="2678400" value="1800">
|
||||
<Help>The interval of sending report group 1. 1 to 2678400 seconds</Help>
|
||||
</Value>
|
||||
<Value type="int" index="112" genre="config" label="Group 2 Interval" units="seconds" min="1" max="2678400" value="1800">
|
||||
<Help>The interval of sending report group 2. 1 to 2678400 seconds</Help>
|
||||
</Value>
|
||||
<Value type="int" index="113" genre="config" label="Group 3 Interval" units="seconds" min="1" max="2678400" value="1800">
|
||||
<Help>The interval of sending report group 3. 1 to 2678400 seconds</Help>
|
||||
</Value>
|
||||
<Value type="list" index="252" genre="config" label="Enable/disable Lock Configuration" units="" min="0" max="1" value="0" size="1">
|
||||
<Help>
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Enabled" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="101" label="Group 1 Reports" type="int" value="255">
|
||||
<Help>Which reports need to send automatically in timing intervals for group 1. Bitsets: 0 -> Battery report, 5 -> Temperature, 6 -> Humidity, 7 -> Luminosity</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="102" label="Group 2 Reports" type="int" value="0">
|
||||
<Help>Which reports need to send automatically in timing intervals for group 2. Bitsets: 0 -> Battery report, 5 -> Temperature, 6 -> Humidity, 7 -> Luminosity</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="103" label="Group 3 Reports" type="int" value="0">
|
||||
<Help>Which reports need to send automatically in timing intervals for group 3. Bitsets: 0 -> Battery report, 5 -> Temperature, 6 -> Humidity, 7 -> Luminosity</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="111" label="Group 1 Interval" max="2678400" min="1" type="int" units="seconds" value="1800">
|
||||
<Help>The interval of sending report group 1. 1 to 2678400 seconds</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="112" label="Group 2 Interval" max="2678400" min="1" type="int" units="seconds" value="1800">
|
||||
<Help>The interval of sending report group 2. 1 to 2678400 seconds</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="113" label="Group 3 Interval" max="2678400" min="1" type="int" units="seconds" value="1800">
|
||||
<Help>The interval of sending report group 3. 1 to 2678400 seconds</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="252" label="Enable/disable Lock Configuration" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
Enable/disable Lock Configuration
|
||||
</Help>
|
||||
<Item label="Disable" value="0" />
|
||||
<Item label="Enable" value="1" />
|
||||
</Value>
|
||||
<Value type="button" index="255" genre="config" label="Reset to default" write_only="true" value="0" >
|
||||
<Help>Reset to factory defaults.</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
|
||||
<!-- the Device Doesn't support Get for Alarm Class -->
|
||||
<CommandClass id="113" getsupported="false"/>
|
||||
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="5" label="LifeLine" />
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="255" label="Reset to default" type="button" value="0" write_only="true">
|
||||
<Help>Reset to factory defaults.</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- the Device Doesn't support Get for Alarm Class -->
|
||||
<CommandClass id="113">
|
||||
<Compatibility>
|
||||
<GetSupported>false</GetSupported>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" label="LifeLine" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -1,14 +1,38 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Aeotec ZW075 Smart Switch Gen5
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584702
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
|
||||
<Product Revision="4" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0086:004B:0003</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/aeotec/zw075.png</MetaDataItem>
|
||||
<MetaDataItem id="004B" name="ZWProductPage" type="0003">https://products.z-wavealliance.org/products/1045/</MetaDataItem>
|
||||
<MetaDataItem name="WakeupDescription">N/A</MetaDataItem>
|
||||
<MetaDataItem name="ExclusionDescription">Turn the primary controller of Z-Wave network into exclusion mode, short press the product’s Action button that you can find on the product's housing.</MetaDataItem>
|
||||
<MetaDataItem id="004B" name="FrequencyName" type="0003">CEPT (Europe)</MetaDataItem>
|
||||
<MetaDataItem name="Name">Smart Switch Gen5</MetaDataItem>
|
||||
<MetaDataItem name="ResetDescription">Press and hold the Action button that you can find on the product's housing for 20 seconds and then release. This procedure should only be used when the primary controller is inoperable.</MetaDataItem>
|
||||
<MetaDataItem name="Description">Aeon Labs Smart Switch Gen5 is a Z-Wave device that can report the wattage energy usage and KWH usage to a Z-Wave Controller (especially a gateway), it can be controlled by other Z-Wave devices to turn on/off loads, it can bear up to 16A current of resistive loads. It also acts as a repeater that forwards Z-Wave command messages to destination nodes if the originating controller is out of range from the destination node.
|
||||
By taking advantage of the Z-Wave mesh network, commands can be routed to their destination via intermediary “listening” Z-Wave products. Products that are Z-Wave certified can be used and communicate with other Z-Wave certified devices.
|
||||
Also a tool that can be programmed, scheduled, controlled and communicated with from anywhere in the world.
|
||||
</MetaDataItem>
|
||||
<MetaDataItem name="InclusionDescription">Turn the primary controller of Z-Wave network into inclusion mode, short press the product’s Action button that you can find on the product's housing.</MetaDataItem>
|
||||
<MetaDataItem id="004B" name="Identifier" type="0003">ZW075-C16</MetaDataItem>
|
||||
<MetaDataItem name="ProductManual">https://Products.Z-WaveAlliance.org/ProductManual/File?folder=&filename=Manuals/1056/Aeon Labs Smart Switch Gen5_Update 2.pdf</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="2">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/1045/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="3">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/1053/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="4">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/1056/xml</Entry>
|
||||
</ChangeLog>
|
||||
<MetaDataItem id="004B" name="ZWProductPage" type="0103">https://products.z-wavealliance.org/products/1053/</MetaDataItem>
|
||||
<MetaDataItem id="004B" name="Identifier" type="0103">ZW075-A02</MetaDataItem>
|
||||
<MetaDataItem id="004B" name="FrequencyName" type="0103">U.S. / Canada / Mexico</MetaDataItem>
|
||||
<MetaDataItem id="004B" name="ZWProductPage" type="0203">https://products.z-wavealliance.org/products/1056/</MetaDataItem>
|
||||
<MetaDataItem id="004B" name="FrequencyName" type="0203">Australia / New Zealand</MetaDataItem>
|
||||
<MetaDataItem id="004B" name="Identifier" type="0203">ZW075-B09</MetaDataItem>
|
||||
</MetaData>
|
||||
<!-- Aeon Labs Smart Switch Gen5 -->
|
||||
<!--Source: http://ozw.my-ho.st/Aeon/Engineering%20Spec%20-%20Aeon%20Labs%20Smart%20Switch%20Gen5_V3.25.pdf-->
|
||||
<Protocol refreshonnodeinfoframe="false"/>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="short" index="2" genre="config" label="Blinking behavior" units="" min="257" max="65535" size="2" value="3850">
|
||||
<Value genre="config" index="2" label="Blinking behavior" max="65535" min="257" size="2" type="short" units="" value="3850">
|
||||
<Help>
|
||||
Configuration Value 1: 1-255
|
||||
Configuration Value 1 is to Specify the time that Smart Switch need blink, The unit is Second;
|
||||
|
@ -16,40 +40,40 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584702
|
|||
Configuration Value 2 is to Specify the Cycle of on/off, the unit of it is 0.1 second.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" index="3" genre="config" label="Current Overload Protection" units="" min="0" max="1" size="1" value="0">
|
||||
<Value genre="config" index="3" label="Current Overload Protection" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Load will be closed when the Current overruns (EU 16.2A) for more than 2 minutes</Help>
|
||||
<Item label="Deactivate Overload Protection (Default)" value="0"/>
|
||||
<Item label="Active Overload Protection" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="20" genre="config" label="Output Load Status" units="" min="0" max="2" size="1" value="0">
|
||||
<Value genre="config" index="20" label="Output Load Status" max="2" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Configure the output load status after re-power on.</Help>
|
||||
<Item label="Last status (Default)" value="0"/>
|
||||
<Item label="Always on" value="1"/>
|
||||
<Item label="Always off" value="2"/>
|
||||
</Value>
|
||||
<Value type="list" index="80" genre="config" label="Notification status" units="" min="0" max="2" size="1" value="0">
|
||||
</Value>
|
||||
<Value genre="config" index="80" label="Notification status" max="2" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Defines the automated status notification of an associated device when status changes</Help>
|
||||
<Item label="Nothing" value="0" />
|
||||
<Item label="Hail" value="1" />
|
||||
<Item label="Basic" value="2" />
|
||||
<Item label="Nothing" value="0"/>
|
||||
<Item label="Hail" value="1"/>
|
||||
<Item label="Basic" value="2"/>
|
||||
</Value>
|
||||
<Value type="list" index="81" genre="config" label="Configure the state of the LED" units="" min="0" max="1" size="1" value="0">
|
||||
<Item label="The LED will follow the status (on/off) of its load. (Default)" value="0"/>
|
||||
<Item label="When the state of the Switch changes, the LED will follow the status (on/off) of its load, but the LED will turn off after 5 seconds." value="1"/>
|
||||
<Value genre="config" index="81" label="Configure the state of the LED" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Item label="The LED will follow the status (on/off) of its load. (Default)" value="0"/>
|
||||
<Item label="When the state of the Switch changes, the LED will follow the status (on/off) of its load, but the LED will turn off after 5 seconds." value="1"/>
|
||||
</Value>
|
||||
<Value type="bool" index="90" genre="config" label="Enables/disables parameter 91/92" units="" value="0">
|
||||
<Value genre="config" index="90" label="Enables/disables parameter 91/92" type="bool" units="" value="0">
|
||||
<Help>Enable/disable Wattage threshold and percent.</Help>
|
||||
</Value>
|
||||
<Value type="short" index="91" genre="config" label="Minimum Change to send Report (Watt)" units="watts" min="0" max="32000" size="2" value="25">
|
||||
<Value genre="config" index="91" label="Minimum Change to send Report (Watt)" max="32000" min="0" size="2" type="short" units="watts" value="25">
|
||||
<Help>The value represents the minimum change in wattage for a Report to be sent (default 25 W)</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="92" genre="config" label="Minimum Change to send Report (%)" units="%" min="0" max="100" value="5">
|
||||
<Value genre="config" index="92" label="Minimum Change to send Report (%)" max="100" min="0" type="byte" units="%" value="5">
|
||||
<Help>The value represents the minimum percentage change in wattage for a Report to be sent (Default 5)</Help>
|
||||
</Value>
|
||||
<Value type="button" index="100" genre="config" label="Default Group Reports" units="" write_only="true" affects="101,102,103">
|
||||
<Value affects="101,102,103" genre="config" index="100" label="Default Group Reports" type="button" units="" write_only="true">
|
||||
<Help>Set report types for groups 1, 2 and 3 to default.</Help>
|
||||
</Value>
|
||||
<Value type="int" index="101" genre="config" label="Report type sent in Reporting Group 1" units="" value="4">
|
||||
<Value genre="config" index="101" label="Report type sent in Reporting Group 1" type="int" units="" value="4">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 1.
|
||||
1 is meter report for voltage.
|
||||
|
@ -66,7 +90,7 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584702
|
|||
bit 0 voltage
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="102" genre="config" label="Report type sent in Reporting Group 2" units="" value="8">
|
||||
<Value genre="config" index="102" label="Report type sent in Reporting Group 2" type="int" units="" value="8">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 2.
|
||||
1 is meter report for voltage.
|
||||
|
@ -83,7 +107,7 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584702
|
|||
bit 0 voltage
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="103" genre="config" label="Report type sent in Reporting Group 3" units="" value="0">
|
||||
<Value genre="config" index="103" label="Report type sent in Reporting Group 3" type="int" units="" value="0">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 3.
|
||||
1 is meter report for voltage.
|
||||
|
@ -100,42 +124,40 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584702
|
|||
bit 0 voltage
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="button" index="110" genre="config" label="Set 111-113 to default" units="" write_only="true" value="0" affects="111,112,113">
|
||||
<Value affects="111,112,113" genre="config" index="110" label="Set 111-113 to default" type="button" units="" value="0" write_only="true">
|
||||
<Help>Set time interval for sending reports for groups 1, 2 and 3 to default.</Help>
|
||||
</Value>
|
||||
<Value type="int" index="111" genre="config" label="Send Interval for Reporting Group 1" units="seconds" min="0" max="65535" value="600">
|
||||
<Value genre="config" index="111" label="Send Interval for Reporting Group 1" max="65535" min="0" type="int" units="seconds" value="600">
|
||||
<Help>Defines the time interval when the defined report for group 1 is sent.</Help>
|
||||
</Value>
|
||||
<Value type="int" index="112" genre="config" label="Send Interval for Reporting Group 2" units="seconds" min="0" max="65535" value="600">
|
||||
<Value genre="config" index="112" label="Send Interval for Reporting Group 2" max="65535" min="0" type="int" units="seconds" value="600">
|
||||
<Help>Defines the time interval when the defined report for group 2 is sent.</Help>
|
||||
</Value>
|
||||
<Value type="int" index="113" genre="config" label="Send Interval for Reporting Group 3" units="seconds" min="0" max="65535" value="600">
|
||||
<Value genre="config" index="113" label="Send Interval for Reporting Group 3" max="65535" min="0" type="int" units="seconds" value="600">
|
||||
<Help>Defines the time interval when the defined report for group 3 is sent.</Help>
|
||||
</Value>
|
||||
<Value type="list" index="200" genre="config" label="Partner ID" units="" min="0" max="1" size="1" value="0">
|
||||
<Value genre="config" index="200" label="Partner ID" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Partner ID</Help>
|
||||
<Item label="Aeon Labs Standard (Default)" value="0"/>
|
||||
<Item label="AT&T" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="252" genre="config" label="Configuration Locked" units="" min="0" max="1" size="1" value="0">
|
||||
<Value genre="config" index="252" label="Configuration Locked" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Enable/disable Configuration Locked</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="short" index="254" genre="config" label="Device tag" units="" min="0" max="65535" value="0">
|
||||
<Value genre="config" index="254" label="Device tag" max="65535" min="0" type="short" units="" value="0">
|
||||
<Help>Device tag.</Help>
|
||||
</Value>
|
||||
<Value type="button" index="255" genre="config" label="Reset device" units="" write_only="true">
|
||||
<Value genre="config" index="255" label="Reset device" type="button" units="" write_only="true">
|
||||
<Help>Reset to the default configuration.</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="2">
|
||||
<Group index="1" max_associations="5" label="LifeLine" />
|
||||
<Group index="2" max_associations="5" label="Retransmit Switch CC" />
|
||||
<Group index="1" label="LifeLine" max_associations="5"/>
|
||||
<Group index="2" label="Retransmit Switch CC" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
||||
|
|
|
@ -1,48 +1,70 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Aeotec ZW078 Heavy Duty Smart Switch Gen5
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584699
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
--><Product Revision="3" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<MetaData>
|
||||
<MetaDataItem name="OzwInfoPage">http://www.openzwave.com/device-database/0086:004E:0103</MetaDataItem>
|
||||
<MetaDataItem name="ProductPic">images/aeotec/zw078.png</MetaDataItem>
|
||||
<MetaDataItem id="004E" name="ZWProductPage" type="0103">https://products.z-wavealliance.org/products/998/</MetaDataItem>
|
||||
<MetaDataItem name="ResetDescription">Press and hold the Action button that you can find on the product's housing for 20 seconds and then release. This procedure should only be used when the primary controller is inoperable.</MetaDataItem>
|
||||
<MetaDataItem name="WakeupDescription">N/A</MetaDataItem>
|
||||
<MetaDataItem name="ExclusionDescription">Turn the primary controller of Z-Wave network into exclusion mode, short press the product’s Action button that you can find on the product's housing.</MetaDataItem>
|
||||
<MetaDataItem name="ProductManual">https://Products.Z-WaveAlliance.org/ProductManual/File?folder=&filename=Manuals/1089/Heavy Duty Smart Switch Gen5 Manual.pdf</MetaDataItem>
|
||||
<MetaDataItem name="Description">Aeon Labs Heavy Duty Smart Switch is a Z-Wave device that can report the wattage energy usage and KWH usage to a Z-Wave Controller (especially a gateway), it can be controlled by other Z-Wave devices to turn on/off loads, it can bear up to 40A current of resister loads. It also acts as a repeater that forward Z-Wave command messages to destination nodes if the originating controller is out of range from the destination node.
|
||||
By taking advantage of the Z-Wave mesh network, commands can be routed to their destination via intermediary “listening” Z-Wave products. Products that are Z-Wave certified can be used and communicate with other Z-Wave certified devices.
|
||||
|
||||
</MetaDataItem>
|
||||
<MetaDataItem name="Name">Heavy Duty Smart Switch Gen5</MetaDataItem>
|
||||
<MetaDataItem id="004E" name="Identifier" type="0103">ZW078-A_Aeon_1406</MetaDataItem>
|
||||
<MetaDataItem id="004E" name="FrequencyName" type="0103">U.S. / Canada / Mexico</MetaDataItem>
|
||||
<MetaDataItem name="InclusionDescription">Turn the primary controller of Z-Wave network into inclusion mode, short press the product’s Action button that you can find on the product's housing.</MetaDataItem>
|
||||
<ChangeLog>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="2">Initial Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/998/xml</Entry>
|
||||
<Entry author="Justin Hammond - Justin@dynam.ac" date="03 May 2019" revision="3">Updated Metadata Import from Z-Wave Alliance Database - https://products.z-wavealliance.org/products/1089/xml</Entry>
|
||||
</ChangeLog>
|
||||
<MetaDataItem id="004E" name="ZWProductPage" type="0203">https://products.z-wavealliance.org/products/1089/</MetaDataItem>
|
||||
<MetaDataItem id="004E" name="Identifier" type="0203">ZW078-B</MetaDataItem>
|
||||
<MetaDataItem id="004E" name="FrequencyName" type="0203">Australia / New Zealand</MetaDataItem>
|
||||
</MetaData>
|
||||
<Protocol refreshonnodeinfoframe="false"/>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="3" genre="config" label="Current Overload Protection" size="1" value="0">
|
||||
<Value genre="config" index="3" label="Current Overload Protection" size="1" type="list" value="0">
|
||||
<Help>
|
||||
Current Overload Protection. Load will be closed when
|
||||
the Current more than 39.5A and the time more than 5
|
||||
seconds
|
||||
</Help>
|
||||
<Item label="Disable" value="0" />
|
||||
<Item label="Enable" value="1" />
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="20" genre="config" label="LED Mode" size="1" value="0">
|
||||
<Value genre="config" index="20" label="LED Mode" size="1" type="list" value="0">
|
||||
<Help>LED status after power on</Help>
|
||||
<Item label="Last Status" value="0"/>
|
||||
<Item label="On" value="1"/>
|
||||
<Item label="Off" value="2"/>
|
||||
</Value>
|
||||
<Value type="list" index="80" genre="config" label="Notification status" units="" size="1" value="0">
|
||||
<Value genre="config" index="80" label="Notification status" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
Enables automatic notifications to associated devices whenever there is a state change.
|
||||
</Help>
|
||||
<Item label="None" value="0" />
|
||||
<Item label="Hail" value="1" />
|
||||
<Item label="Basic" value="2" />
|
||||
<Item label="None" value="0"/>
|
||||
<Item label="Hail" value="1"/>
|
||||
<Item label="Basic" value="2"/>
|
||||
</Value>
|
||||
<Value type="bool" index="90" genre="config" label="Enable Wattage Reports" units="" value="1">
|
||||
<Value genre="config" index="90" label="Enable Wattage Reports" type="bool" units="" value="1">
|
||||
<Help>Enable/disable Wattage threshold and percent.</Help>
|
||||
</Value>
|
||||
<Value type="short" index="91" genre="config" label="Wattage threshold" units="watts" min="0" max="32000" value="50">
|
||||
<Value genre="config" index="91" label="Wattage threshold" max="32000" min="0" type="short" units="watts" value="50">
|
||||
<Help>The minimum change in wattage for a report to be sent.</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="92" genre="config" label="Wattage threshold percent" units="%" min="0" max="99" value="10">
|
||||
<Value genre="config" index="92" label="Wattage threshold percent" max="99" min="0" type="byte" units="%" value="10">
|
||||
<Help>Minimum change in percent of wattage to send a report.</Help>
|
||||
</Value>
|
||||
<Value type="button" index="100" genre="config" label="Default Group Reports" units="" write_only="true" value="0" affects="101,102,103">
|
||||
<Value affects="101,102,103" genre="config" index="100" label="Default Group Reports" type="button" units="" value="0" write_only="true">
|
||||
<Help>Set report types for groups 1, 2 and 3 to default.</Help>
|
||||
</Value>
|
||||
<Value type="int" index="101" genre="config" label="Report type sent in Reporting Group 1" units="" value="4">
|
||||
<Value genre="config" index="101" label="Report type sent in Reporting Group 1" type="int" units="" value="4">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 1.
|
||||
1 is meter report for voltage.
|
||||
|
@ -59,7 +81,7 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584699
|
|||
bit 0 voltage
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="102" genre="config" label="Report type sent in Reporting Group 2" units="" value="8">
|
||||
<Value genre="config" index="102" label="Report type sent in Reporting Group 2" type="int" units="" value="8">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 2.
|
||||
1 is meter report for voltage.
|
||||
|
@ -76,7 +98,7 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584699
|
|||
bit 0 voltage
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="103" genre="config" label="Report type sent in Reporting Group 3" units="" value="0">
|
||||
<Value genre="config" index="103" label="Report type sent in Reporting Group 3" type="int" units="" value="0">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 3.
|
||||
1 is meter report for voltage.
|
||||
|
@ -93,41 +115,39 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584699
|
|||
bit 0 voltage
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="button" index="110" genre="config" label="Default Group Time" units="" write_only="true" value="0" affects="111,112,113">
|
||||
<Value affects="111,112,113" genre="config" index="110" label="Default Group Time" type="button" units="" value="0" write_only="true">
|
||||
<Help>Set time interval for sending reports for groups 1, 2 and 3 to default.</Help>
|
||||
</Value>
|
||||
<Value type="int" index="111" genre="config" label="Send interval G1" units="seconds" min="0" max="65535" value="5">
|
||||
<Value genre="config" index="111" label="Send interval G1" max="65535" min="0" type="int" units="seconds" value="5">
|
||||
<Help>Defines the time interval when the defined report for group 1 is sent.</Help>
|
||||
</Value>
|
||||
<Value type="int" index="112" genre="config" label="Send interval G2" units="seconds" min="0" max="65535" value="120">
|
||||
<Value genre="config" index="112" label="Send interval G2" max="65535" min="0" type="int" units="seconds" value="120">
|
||||
<Help>Defines the time interval when the defined report for group 2 is sent.</Help>
|
||||
</Value>
|
||||
<Value type="int" index="113" genre="config" label="Send interval G3" units="seconds" min="0" max="65535" value="120">
|
||||
<Value genre="config" index="113" label="Send interval G3" max="65535" min="0" type="int" units="seconds" value="120">
|
||||
<Help>Defines the time interval when the defined report for group 3 is sent.</Help>
|
||||
</Value>
|
||||
<Value type="list" index="200" genre="config" label="Partner ID" units="" min="0" max="1" size="1" value="0">
|
||||
<Item label="Aeon Labs Standard Product" value="0" />
|
||||
<Item label="Other" value="1" />
|
||||
</Value>
|
||||
<Value type="list" genre="config" index="252" label="Lock/Unlock Configuration" min="0" max="1" size="1" value="0">
|
||||
<Value genre="config" index="200" label="Partner ID" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Item label="Aeon Labs Standard Product" value="0"/>
|
||||
<Item label="Other" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="252" label="Lock/Unlock Configuration" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Lock/ unlock all configuration parameters</Help>
|
||||
<Item label="Unlock" value="0"/>
|
||||
<Item label="Lock" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="255" genre="config" label="Reset To Factory Defaults" size="4" value="1" write_only="true">
|
||||
<Help>Reset to factory defaults</Help>
|
||||
<Item label="Reset to factory default setting" value="0"/>
|
||||
<Item label="Normal" value="1"/>
|
||||
<Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
|
||||
</Value>
|
||||
<Value genre="config" index="255" label="Reset To Factory Defaults" size="4" type="list" value="1" write_only="true">
|
||||
<Help>Reset to factory defaults</Help>
|
||||
<Item label="Reset to factory default setting" value="0"/>
|
||||
<Item label="Normal" value="1"/>
|
||||
<Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
|
||||
<!-- Association Groups -->
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="2">
|
||||
<Group index="1" max_associations="5" label="LifeLine" />
|
||||
<Group index="2" max_associations="5" label="Retransmit Switch CC" />
|
||||
<Group index="1" label="LifeLine" max_associations="5"/>
|
||||
<Group index="2" label="Retransmit Switch CC" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
||||
|
|
|
@ -1,63 +1,63 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Aeotec ZW080 Siren Gen5
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584694
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Protocol refreshonnodeinfoframe="false"/>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="37" genre="config" label="Siren sound and Volume" units="" value="259" size="2">
|
||||
<Help>Select the Siren Sound and Volume</Help>
|
||||
<Item label="Sound 1 - Low Volume" value="257"/>
|
||||
<Item label="Sound 1 - Mid Volume" value="258"/>
|
||||
<Item label="Sound 1 - High Volume" value="259"/>
|
||||
<Item label="Sound 2 - Low Volume" value="513"/>
|
||||
<Item label="Sound 2 - Mid Volume" value="514"/>
|
||||
<Item label="Sound 2 - High Volume" value="515"/>
|
||||
<Item label="Sound 3 - Low Volume" value="769"/>
|
||||
<Item label="Sound 3 - Mid Volume" value="770"/>
|
||||
<Item label="Sound 3 - High Volume" value="771"/>
|
||||
<Item label="Sound 4 - Low Volume" value="1025"/>
|
||||
<Item label="Sound 4 - Mid Volume" value="1026"/>
|
||||
<Item label="Sound 4 - High Volume" value="1027"/>
|
||||
<Item label="Sound 5 - Low Volume" value="1281"/>
|
||||
<Item label="Sound 5 - Mid Volume" value="1282"/>
|
||||
<Item label="Sound 5 - High Volume" value="1283"/>
|
||||
</Value>
|
||||
<Value type="list" index="38" genre="config" label="Enable/disable the action button" units="" min="0" max="1" value="1" size="1">
|
||||
<Help>Enable/disable to turn off the alarm sound via pressing the Action Button. </Help>
|
||||
<Item label="Disable" value="0" />
|
||||
<Item label="Enable" value="1" />
|
||||
</Value>
|
||||
<Value type="list" index="80" genre="config" label="Send Notifications" units="" min="0" max="1" value="0" size="1">
|
||||
<Help>Enable to send notifications to associated devices (Group 1) when the state of Siren changed</Help>
|
||||
<Item label="Nothing" value="0" />
|
||||
<Item label="Hail" value="1" />
|
||||
<Item label="Basic" value="2" />
|
||||
</Value>
|
||||
<Value type="list" index="200" genre="config" label="Partner ID" units="" min="0" max="1" value="0" size="1">
|
||||
<Help>Partner ID</Help>
|
||||
<Item label="Aeon Labs Standard Product" value="0"/>
|
||||
</Value>
|
||||
<Value type="list" index="252" genre="config" label="Enable/disable Lock Configuration" units="" min="0" max="1" value="0" size="1">
|
||||
<Help>Enable/disable Lock Configuration</Help>
|
||||
<Item label="Disable" value="0" />
|
||||
<Item label="Enable" value="1" />
|
||||
</Value>
|
||||
<Value type="list" index="255" genre="config" label="Reset To Factory Defaults" size="4" value="1" write_only="true">
|
||||
<Help>Reset to factory defaults</Help>
|
||||
<Item label="Reset to factory default setting" value="0"/>
|
||||
<Item label="Normal" value="1"/>
|
||||
<Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Basic set as report -->
|
||||
<CommandClass id="32" setasreport="true"/>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="5" label="LifeLine" />
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
<!-- Aeon Labs DSD31 Siren Gen5 -->
|
||||
<Product Revision="3" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<Protocol refreshonnodeinfoframe="false"/>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="37" label="Siren sound and Volume" size="2" type="list" units="" value="259">
|
||||
<Help>Select the Siren Sound and Volume</Help>
|
||||
<Item label="Sound 1 - Low Volume" value="257"/>
|
||||
<Item label="Sound 1 - Mid Volume" value="258"/>
|
||||
<Item label="Sound 1 - High Volume" value="259"/>
|
||||
<Item label="Sound 2 - Low Volume" value="513"/>
|
||||
<Item label="Sound 2 - Mid Volume" value="514"/>
|
||||
<Item label="Sound 2 - High Volume" value="515"/>
|
||||
<Item label="Sound 3 - Low Volume" value="769"/>
|
||||
<Item label="Sound 3 - Mid Volume" value="770"/>
|
||||
<Item label="Sound 3 - High Volume" value="771"/>
|
||||
<Item label="Sound 4 - Low Volume" value="1025"/>
|
||||
<Item label="Sound 4 - Mid Volume" value="1026"/>
|
||||
<Item label="Sound 4 - High Volume" value="1027"/>
|
||||
<Item label="Sound 5 - Low Volume" value="1281"/>
|
||||
<Item label="Sound 5 - Mid Volume" value="1282"/>
|
||||
<Item label="Sound 5 - High Volume" value="1283"/>
|
||||
</Value>
|
||||
<Value genre="config" index="38" label="Enable/disable the action button" max="1" min="0" size="1" type="list" units="" value="1">
|
||||
<Help>Enable/disable to turn off the alarm sound via pressing the Action Button. </Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="80" label="Send Notifications" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Enable to send notifications to associated devices (Group 1) when the state of Siren changed</Help>
|
||||
<Item label="Nothing" value="0"/>
|
||||
<Item label="Hail" value="1"/>
|
||||
<Item label="Basic" value="2"/>
|
||||
</Value>
|
||||
<Value genre="config" index="200" label="Partner ID" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Partner ID</Help>
|
||||
<Item label="Aeon Labs Standard Product" value="0"/>
|
||||
</Value>
|
||||
<Value genre="config" index="252" label="Enable/disable Lock Configuration" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Enable/disable Lock Configuration</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="255" label="Reset To Factory Defaults" size="4" type="list" value="1" write_only="true">
|
||||
<Help>Reset to factory defaults</Help>
|
||||
<Item label="Reset to factory default setting" value="0"/>
|
||||
<Item label="Normal" value="1"/>
|
||||
<Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Basic set as report -->
|
||||
<CommandClass id="32">
|
||||
<Compatibility>
|
||||
<SetAsReport>true</SetAsReport>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" label="LifeLine" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Aeotec ZW088 Key Fob Gen5
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584698
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="1">
|
||||
<!-- Aeon Labs Key Fob Gen5 -->
|
||||
<!-- Basic and SwitchMultiLevel are for when the KeyFob is in Group Mode.
|
||||
You should configure the device to operate in Scene Mode instead if you
|
||||
wish to integrate it with your application -->
|
||||
|
|
|
@ -1,36 +1,32 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Aeotec ZW089 Recessed Door Sensor Gen5
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584697
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration -->
|
||||
<!-- Aeon Labs Recessed Door Sensor -->
|
||||
<Product Revision="3" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<!-- Configuration -->
|
||||
<!-- Alarm CC isn't supported on this device -->
|
||||
<CommandClass id="113" action="remove"/>
|
||||
<CommandClass id="112">
|
||||
<Value type="list" genre="config" instance="1" index="1" label="Sensor Binary Report Toggle" min="0" max="1" size="1" value="0">
|
||||
<Help>Which value of the Sensor Binary Report will be sent when
|
||||
<CommandClass action="remove" id="113"/>
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="1" instance="1" label="Sensor Binary Report Toggle" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Which value of the Sensor Binary Report will be sent when
|
||||
the magnet switch to open/close.</Help>
|
||||
<Item label="Normal" value="0"/>
|
||||
<Item label="Inverse" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="3" label="Basic Set Toggle" min="0" max="1" size="1" value="0">
|
||||
<Help>Which value of the Basic Set will be sent when the magnet
|
||||
<Item label="Normal" value="0"/>
|
||||
<Item label="Inverse" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="3" instance="1" label="Basic Set Toggle" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Which value of the Basic Set will be sent when the magnet
|
||||
switch to open/close.
|
||||
</Help>
|
||||
<Item label="Normal" value="0"/>
|
||||
<Item label="Inverse" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="101" label="Low Battery Check Enable" min="0" max="1" size="1" value="0">
|
||||
<Help>Enable/disable the function of low battery checking, when
|
||||
<Item label="Normal" value="0"/>
|
||||
<Item label="Inverse" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="101" instance="1" label="Low Battery Check Enable" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Enable/disable the function of low battery checking, when
|
||||
the current voltage is less than the warning voltage, it will
|
||||
send the Battery Low Warning Report.
|
||||
</Help>
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Enabled" value="1"/>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="111" label="Low Battery Check Interval" min="0" max="4294967295" value="86640">
|
||||
<Help>This parameter is available when the low battery checking
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Enabled" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="111" instance="1" label="Low Battery Check Interval" max="4294967295" min="0" type="int" value="86640">
|
||||
<Help>This parameter is available when the low battery checking
|
||||
function is activated or the device was waked up by other
|
||||
actions (i.e. the z-wave button trigger, magnet switch
|
||||
trigger and the Wake Up Interval Set timeout trigger).
|
||||
|
@ -40,33 +36,37 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584697
|
|||
Wake Up Interval Set timeout trigger.
|
||||
Default setting: 86640
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="121" label="Report Type" size="4" value="256">
|
||||
<Help>Configure which sensor report will be sent when the sensor is Opened/Closed</Help>
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Basic Set" value="256"/>
|
||||
<Item label="Sensor Binary Report" value="16"/>
|
||||
<Item label="Basic Set and Sensor Binary Report" value="272"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" index="252" label="Lock/Unlock Configuration" min="0" max="1" size="1" value="0">
|
||||
<Help>Lock/ unlock all configuration parameters</Help>
|
||||
<Item label="Unlock" value="0"/>
|
||||
<Item label="Lock" value="1"/>
|
||||
</Value>
|
||||
<Value type="short" index="254" genre="config" label="Device Tag" units="" min="0" max="65535" value="0">
|
||||
<Help>Device Tag</Help>
|
||||
</Value>
|
||||
<Value type="button" index="255" genre="config" label="Reset To Factory Defaults" write_only="true" value="0" >
|
||||
<Help>Reset to factory defaults.</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Basic set as report-->
|
||||
<CommandClass id="32" setasreport="true"/>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="2">
|
||||
<Group index="1" max_associations="5" label="LifeLine" />
|
||||
<Group index="2" max_associations="5" label="Battery" auto="true"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Value>
|
||||
<Value genre="config" index="121" instance="1" label="Report Type" size="4" type="list" value="256">
|
||||
<Help>Configure which sensor report will be sent when the sensor is Opened/Closed</Help>
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Basic Set" value="256"/>
|
||||
<Item label="Sensor Binary Report" value="16"/>
|
||||
<Item label="Basic Set and Sensor Binary Report" value="272"/>
|
||||
</Value>
|
||||
<Value genre="config" index="252" label="Lock/Unlock Configuration" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Lock/ unlock all configuration parameters</Help>
|
||||
<Item label="Unlock" value="0"/>
|
||||
<Item label="Lock" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="254" label="Device Tag" max="65535" min="0" type="short" units="" value="0">
|
||||
<Help>Device Tag</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="255" label="Reset To Factory Defaults" type="button" value="0" write_only="true">
|
||||
<Help>Reset to factory defaults.</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Basic set as report-->
|
||||
<CommandClass id="32">
|
||||
<Compatibility>
|
||||
<SetAsReport>true</SetAsReport>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="2">
|
||||
<Group index="1" label="LifeLine" max_associations="5"/>
|
||||
<Group auto="true" index="2" label="Battery" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -1,13 +1,12 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Aeotec ZW090 Z-Stick Gen5
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584703
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Aeotec Z-Stick Gen5 -->
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="3">
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="81" genre="config" label="LED indicator configuration" min="0" max="1" value="1" size="1">
|
||||
<Help>Enable/Disable LED indicator when plugged in</Help>
|
||||
<Help lang="fr">Activer / désactiver l'indicateur LED lorsqu'il est branché</Help>
|
||||
<Label lang="fr">Configuration d'indicateur LED</Label>
|
||||
<Item label="Disable" value="0" />
|
||||
<Item label="Enable" value="1" />
|
||||
</Value>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
Aeotec ZW095 Home Energy Meter Gen5
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584689
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="2">
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="2" genre="config" label="Power, energy detection mode" units="" min="0" max="3" value="0" size="1">
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Aeotec Smart Switch 6
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584701
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="2">
|
||||
<!-- Aeon Labs Smart Switch 6 -->
|
||||
<Protocol refreshonnodeinfoframe="false"/>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
|
|
|
@ -1,31 +1,30 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Aeotec ZW097 Dry Contact Sensor Gen5 base on Engineering Spec 06/05/2015 rev 2
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584692
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product Revision="2" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" genre="config" instance="1" index="1" label="Sensor Binary Report" min="0" max="1" value="0" size="1">
|
||||
<Value genre="config" index="1" instance="1" label="Sensor Binary Report" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Which value of the Sensor Binary Report will be sent when the door is Opened/Closed</Help>
|
||||
<Item label="Open: 0xFF, Close: 0x00" value="0"/>
|
||||
<Item label="Open: 0x00, Close: 0xFF" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="2" label="Wakeup at Poweron" min="0" max="1" value="1" size="1">
|
||||
<Value genre="config" index="2" instance="1" label="Wakeup at Poweron" max="1" min="0" size="1" type="list" value="1">
|
||||
<Help>Enable/disable wake up 10 minutes when re-power on the Sensor.
|
||||
Default setting: Enable</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="3" label="Basic Set Report" min="0" max="1" value="0" size="1">
|
||||
<Value genre="config" index="3" instance="1" label="Basic Set Report" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Which value of the Basic Set will be sent when the door is Opened/Closed</Help>
|
||||
<Item label="Open: 0xFF, Close: 0x00" value="0"/>
|
||||
<Item label="Open: 0x00, Close: 0xFF" value="1"/>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="39" label="Set the low battery value" min="10" max="50" value="10" size="1">
|
||||
<Value genre="config" index="39" instance="1" label="Set the low battery value" max="50" min="10" size="1" type="byte" value="10">
|
||||
<Help>10% to 50%</Help>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="111" label="Interval time of battery report" size="4" min="0" max="2147483647" value="0">
|
||||
<Value genre="config" index="111" instance="1" label="Interval time of battery report" max="2147483647" min="0" size="4" type="int" value="0">
|
||||
<Help>
|
||||
Set the interval time of battery report.
|
||||
Value=0, disable the battery report for a interval time.
|
||||
|
@ -37,14 +36,14 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584692
|
|||
2, if the current battery report falls below the low battery value (configurable parameter 39), it will send battery report=0xFF.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="121" label="Report Type" size="4" min="0" max="65535" value="256">
|
||||
<Value genre="config" index="121" instance="1" label="Report Type" max="65535" min="0" size="4" type="list" value="256">
|
||||
<Help>Configure which sensor report will be sent when the sensor is Opened/Closed</Help>
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Basic Set" value="256"/>
|
||||
<Item label="Sensor Binary Report" value="16"/>
|
||||
<Item label="Basic Set and Sensor Binary Report" value="272"/>
|
||||
</Value>
|
||||
<Value type="list" index="255" genre="config" label="Reset To Factory Defaults" size="4" value="1" write_only="true">
|
||||
<Value genre="config" index="255" label="Reset To Factory Defaults" size="4" type="list" value="1" write_only="true">
|
||||
<Help>Reset to factory defaults</Help>
|
||||
<Item label="Reset to factory default setting" value="0"/>
|
||||
<Item label="Normal" value="1"/>
|
||||
|
@ -52,12 +51,15 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584692
|
|||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Basic set as report-->
|
||||
<CommandClass id="32" setasreport="true"/>
|
||||
<CommandClass id="32">
|
||||
<Compatibility>
|
||||
<SetAsReport>true</SetAsReport>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="5" label="Lifeline" />
|
||||
<Group index="1" label="Lifeline" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
||||
|
|
|
@ -1,10 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Aeotec LED Bulb -->
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="2">
|
||||
<!--
|
||||
Aeotec ZW098 LED Bulb
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584691 v1.04
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6034356249 v1.05
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="20" genre="config" label="State after re-power" min="0" max="2" value="1" size="1">
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Aeotec ZW099 Smart Dimmer 6
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6009584700
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product Revision="2" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<!-- Aeon Labs Smart Dimmer 6 -->
|
||||
<Protocol refreshonnodeinfoframe="false"/>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<!-- Doesn't work
|
||||
<!-- Doesn't work
|
||||
<Value type="byte" index="2" genre="config" label="Dimmer Blink" units="" size="2" value="250">
|
||||
<Help>Configuration Value 1 1-255
|
||||
Configuration Value 1 is to Specify the time that Dimmer need blink, The unit is Second;
|
||||
|
@ -18,17 +14,17 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584700
|
|||
</Help>
|
||||
</Value>
|
||||
-->
|
||||
<Value type="list" index="3" genre="config" label="Current Overload Protection" units="" min="0" max="1" size="1" value="1">
|
||||
<Value genre="config" index="3" label="Current Overload Protection" max="1" min="0" size="1" type="list" units="" value="1">
|
||||
<Help>Load will be closed when the Current overruns (US 15.5A, Others 16.2) for more than 2 minutes</Help>
|
||||
<Item label="Deactivate Overload Protection (Default)" value="0"/>
|
||||
<Item label="Active Overload Protection" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="20" genre="config" label="Output Load Status" units="" min="0" max="2" size="1" value="0">
|
||||
<Value genre="config" index="20" label="Output Load Status" max="2" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Configure the output load status after re-power on.</Help>
|
||||
<Item label="Last status (Default)" value="0"/>
|
||||
<Item label="Always on" value="1"/>
|
||||
<Item label="Always off" value="2"/>
|
||||
</Value>
|
||||
</Value>
|
||||
<!-- Doesn't work
|
||||
<Value type="byte" index="33" genre="config" label="RGB Led Color for Testing" units="" min="1" max="4" size="1" value="0">
|
||||
<Help>Configure the RGB Led Color for Testing
|
||||
|
@ -38,49 +34,49 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584700
|
|||
Byte 4 - Blue Value</Help>
|
||||
</Value>
|
||||
-->
|
||||
<Value type="list" index="80" genre="config" label="Notification status" units="" min="0" max="2" size="1" value="0">
|
||||
<Value genre="config" index="80" label="Notification status" max="2" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Defines the automated status notification of an associated device when status changes</Help>
|
||||
<Item label="Nothing" value="0" />
|
||||
<Item label="Hail" value="1" />
|
||||
<Item label="Basic" value="2" />
|
||||
<Item label="Nothing" value="0"/>
|
||||
<Item label="Hail" value="1"/>
|
||||
<Item label="Basic" value="2"/>
|
||||
</Value>
|
||||
<Value type="list" index="81" genre="config" label="Configure the state of the LED" units="" min="0" max="1" size="1" value="0">
|
||||
<Help>Configure what the LED Ring displays during operations</Help>
|
||||
<Item label="The LED will follow the status (on/off) of its load. (Default)" value="0"/>
|
||||
<Item label="When the state of the Switch changes, the LED will follow the status (on/off) of its load, but the LED will turn off after 5 seconds." value="1"/>
|
||||
<Item label="Night Light Mode" value="2" />
|
||||
<Value genre="config" index="81" label="Configure the state of the LED" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Configure what the LED Ring displays during operations</Help>
|
||||
<Item label="The LED will follow the status (on/off) of its load. (Default)" value="0"/>
|
||||
<Item label="When the state of the Switch changes, the LED will follow the status (on/off) of its load, but the LED will turn off after 5 seconds." value="1"/>
|
||||
<Item label="Night Light Mode" value="2"/>
|
||||
</Value>
|
||||
<Value type="int" index="83" genre="config" label="Night Light Color" units="" min="0" max="16777215" size="3" value="14524637" read_only="true">
|
||||
<Help>Configure the RGB Value when in Night Light Mode.
|
||||
<Value genre="config" index="83" label="Night Light Color" max="16777215" min="0" read_only="true" size="3" type="int" units="" value="14524637">
|
||||
<Help>Configure the RGB Value when in Night Light Mode.
|
||||
Byte 1: Red Color
|
||||
Byte 2: Green Color
|
||||
Byte 3: Blue Color
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="84" genre="config" label="RGB Brightness in Energy Mode" units="" min="0" max="16777215" size="3" value="5263440" read_only="true">
|
||||
<Help>Configure the brightness level of RGB LED (0%-100%) when it is in Energy Mode/momentary indicate mode.
|
||||
<Value genre="config" index="84" label="RGB Brightness in Energy Mode" max="16777215" min="0" read_only="true" size="3" type="int" units="" value="5263440">
|
||||
<Help>Configure the brightness level of RGB LED (0%-100%) when it is in Energy Mode/momentary indicate mode.
|
||||
Byte 1: Red Color
|
||||
Byte 2: Green Color
|
||||
Byte 3: Blue Color
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="bool" index="90" genre="config" label="Enables/disables parameter 91/92" units="" value="0">
|
||||
<Value genre="config" index="90" label="Enables/disables parameter 91/92" type="bool" units="" value="0">
|
||||
<Help>
|
||||
Enable/disable Wattage threshold and percent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="91" genre="config" label="Minimum Change to send Report (Watt)" units="watts" min="0" max="32000" size="2" value="25">
|
||||
<Value genre="config" index="91" label="Minimum Change to send Report (Watt)" max="32000" min="0" size="2" type="short" units="watts" value="25">
|
||||
<Help>The value represents the minimum change in wattage for a Report to be sent (default 25 W)</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="92" genre="config" label="Minimum Change to send Report (%)" units="%" min="0" max="100" value="5">
|
||||
<Value genre="config" index="92" label="Minimum Change to send Report (%)" max="100" min="0" type="byte" units="%" value="5">
|
||||
<Help>The value represents the minimum percentage change in wattage for a Report to be sent (Default 5)</Help>
|
||||
</Value>
|
||||
<Value type="button" index="100" genre="config" label="Default Group Reports" units="" write_only="true" affects="101,102,103">
|
||||
<Value affects="101,102,103" genre="config" index="100" label="Default Group Reports" type="button" units="" write_only="true">
|
||||
<Help>
|
||||
Set report types for groups 1, 2 and 3 to default.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="101" genre="config" label="Report type sent in Reporting Group 1" size="4" value="0">
|
||||
<Value genre="config" index="101" label="Report type sent in Reporting Group 1" size="4" type="int" value="0">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 1. 2 is multisensor report. 4 is meter report for watts. 8 is meter report for kilowatts.
|
||||
Value 1 (msb) Reserved
|
||||
|
@ -94,7 +90,7 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584700
|
|||
bit 0 Voltage
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="102" genre="config" label="Report type sent in Reporting Group 2" size="4" value="0">
|
||||
<Value genre="config" index="102" label="Report type sent in Reporting Group 2" size="4" type="int" value="0">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 1. 2 is multisensor report. 4 is meter report for watts. 8 is meter report for kilowatts.
|
||||
Value 1 (msb) Reserved
|
||||
|
@ -108,7 +104,7 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584700
|
|||
bit 0 Voltage
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="103" genre="config" label="Report type sent in Reporting Group 3" size="4" value="0">
|
||||
<Value genre="config" index="103" label="Report type sent in Reporting Group 3" size="4" type="int" value="0">
|
||||
<Help>
|
||||
Defines the type of report sent for reporting group 1. 2 is multisensor report. 4 is meter report for watts. 8 is meter report for kilowatts.
|
||||
Value 1 (msb) Reserved
|
||||
|
@ -122,55 +118,58 @@ https://aeotec.freshdesk.com/helpdesk/attachments/6009584700
|
|||
bit 0 Voltage
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="button" index="110" genre="config" label="Set 111 to 113 to default" units="" write_only="true" value="0" affects="111,112,113">
|
||||
<Value affects="111,112,113" genre="config" index="110" label="Set 111 to 113 to default" type="button" units="" value="0" write_only="true">
|
||||
<Help>
|
||||
Set time interval for sending reports for groups 1, 2 and 3 to default.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="111" genre="config" label="Send Interval for Reporting Group 1" units="seconds" size="4" min="0" max="4294967295" value="3">
|
||||
<Help>
|
||||
<Value genre="config" index="111" label="Send Interval for Reporting Group 1" max="4294967295" min="0" size="4" type="int" units="seconds" value="3">
|
||||
<Help>
|
||||
Defines the time interval when the defined report for group 1 is sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="112" genre="config" label="Send Interval for Reporting Group 2" units="seconds" size="4" min="0" max="4294967295" value="600">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="112" label="Send Interval for Reporting Group 2" max="4294967295" min="0" size="4" type="int" units="seconds" value="600">
|
||||
<Help>
|
||||
Defines the time interval when the defined report for group 2 is sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="113" genre="config" label="Send Interval for Reporting Group 3" units="seconds" size="4" min="0" max="4294967295" value="600">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="113" label="Send Interval for Reporting Group 3" max="4294967295" min="0" size="4" type="int" units="seconds" value="600">
|
||||
<Help>
|
||||
Defines the time interval when the defined report for group 3 is sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" index="200" genre="config" label="Partner ID" units="" min="0" max="1" size="1" value="0">
|
||||
</Value>
|
||||
<Value genre="config" index="200" label="Partner ID" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Partner ID</Help>
|
||||
<Item label="Aeon Labs Standard (Default)" value="0"/>
|
||||
<Item label="Others" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="252" genre="config" label="Configuration Locked" units="" min="0" max="1" size="1" value="0">
|
||||
<Value genre="config" index="252" label="Configuration Locked" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Enable/disable Configuration Locked</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="short" index="254" genre="config" label="Device tag" units="" min="0" max="65535" value="0">
|
||||
<Value genre="config" index="254" label="Device tag" max="65535" min="0" type="short" units="" value="0">
|
||||
<Help>
|
||||
Device tag.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="button" index="255" genre="config" label="Reset device" units="" write_only="true">
|
||||
<Value genre="config" index="255" label="Reset device" type="button" units="" write_only="true">
|
||||
<Help>
|
||||
Reset to the default configuration.
|
||||
</Help>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<CommandClass id="96" mapping="endpoints" forceUniqueEndpoints="true" />
|
||||
|
||||
<CommandClass id="96">
|
||||
<Compatibility>
|
||||
<MapRootToEndpoint>true</MapRootToEndpoint>
|
||||
<ForceUniqueEndpoints>true</ForceUniqueEndpoints>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="2">
|
||||
<Group index="1" max_associations="5" label="LifeLine" />
|
||||
<Group index="2" max_associations="5" label="Retransmit Switch CC" />
|
||||
<Group index="1" label="LifeLine" max_associations="5"/>
|
||||
<Group index="2" label="Retransmit Switch CC" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
||||
|
|
|
@ -1,115 +1,153 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Aeotec ZW100 MultiSensor 6
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6028954764
|
||||
V1.10 + V1.11 (12/14/2017)
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="2" genre="config" label="Wake up 10 minutes on Power On" min="0" max="1" value="0" size="1">
|
||||
<Help>Enable/Disable waking up for 10 minutes when re-power on (battery mode) the MultiSensor</Help>
|
||||
<Item label="Disable" value="0" />
|
||||
<Item label="Enable" value="1" />
|
||||
</Value>
|
||||
<Value type="short" index="3" genre="config" label="On time" units="seconds" min="10" max="3600" value="240">
|
||||
<Help>Duration that the motion sensor must observe no motion before it will return to the no-motion state.
|
||||
<Product Revision="16" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="2" label="Wake up 10 minutes on Power On" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Enable/Disable waking up for 10 minutes when re-power on (battery mode) the MultiSensor</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
<Item label="Disable-fr" lang="fr" value="0"/>
|
||||
<Item label="Enable-Fr" lang="fr" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="3" label="On time" max="3600" min="10" type="short" units="seconds" value="240">
|
||||
<Help>Duration that the motion sensor must observe no motion before it will return to the no-motion state.
|
||||
If value greater than 255, effective value is rounded up to the nearest minute (255 -> 255 seconds, 256 -> 300 seconds)</Help>
|
||||
</Value>
|
||||
<Value type="list" index="4" genre="config" label="Enable Motion Sensor" min="0" max="1" value="5" size="1">
|
||||
<Help>Enable Motion Sensor, (1 minimum, 5 maximum sensitivity level)</Help>
|
||||
<Item label="Disabled" value="0" />
|
||||
<Item label="Enabled level 1" value="1" />
|
||||
<Item label="Enabled level 2" value="2" />
|
||||
<Item label="Enabled level 3" value="3" />
|
||||
<Item label="Enabled level 4" value="4" />
|
||||
<Item label="Enabled level 5" value="5" />
|
||||
</Value>
|
||||
<Value type="list" index="5" genre="config" label="Command Options" min="1" max="2" value="1" size="1">
|
||||
<Help>Which commands to send when PIR motion sensor triggered
|
||||
</Value>
|
||||
<Value genre="config" index="4" label="Enable Motion Sensor" max="1" min="0" size="1" type="list" value="5">
|
||||
<Help>Enable Motion Sensor, (1 minimum, 5 maximum sensitivity level)</Help>
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Enabled level 1" value="1"/>
|
||||
<Item label="Enabled level 2" value="2"/>
|
||||
<Item label="Enabled level 3" value="3"/>
|
||||
<Item label="Enabled level 4" value="4"/>
|
||||
<Item label="Enabled level 5" value="5"/>
|
||||
</Value>
|
||||
<Value genre="config" index="5" label="Command Options" max="2" min="1" size="1" type="list" value="1">
|
||||
<Help>Which commands to send when PIR motion sensor triggered
|
||||
OZW Ideal Value is Binary Sensor Report</Help>
|
||||
<Item label="Basic Set" value="1" />
|
||||
<Item label="Binary Sensor Report" value="2" />
|
||||
</Value>
|
||||
<Value type="byte" index="8" genre="config" label="Awake timeout" min="8" max="255" value="30" size="1">
|
||||
<Help>
|
||||
<Item label="Basic Set" value="1"/>
|
||||
<Item label="Binary Sensor Report" value="2"/>
|
||||
</Value>
|
||||
<Value genre="config" index="8" label="Awake timeout" max="255" min="8" size="1" type="byte" value="30">
|
||||
<Help>
|
||||
Set the timeout of awake after the Wake Up CC is sent out.
|
||||
Available rang: 8 to 255 seconds.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="9" label="Current power mode" min="0" max="257" size="2" value="0" read_only="true">
|
||||
<Help>Report the current power mode and the product state for battery power mode</Help>
|
||||
<Item label="USB power, sleeping mode after re-power on" value="0"/>
|
||||
<Item label="USB power, keep awake for 10 minutes after re-power on" value="1"/>
|
||||
<Item label="Battery power, sleeping mode after re-power on" value="256"/>
|
||||
<Item label="Battery power, keep awake for 10 minutes after re-power on" value="257"/>
|
||||
</Value>
|
||||
<Value type="byte" index="39" genre="config" label="Low Battery" min="10" max="50" value="20" size="1">
|
||||
<Help>Configure low battery value
|
||||
</Value>
|
||||
<Value genre="config" index="9" instance="1" label="Current power mode" max="257" min="0" read_only="true" size="2" type="list" value="0">
|
||||
<Help>Report the current power mode and the product state for battery power mode</Help>
|
||||
<Item label="USB power, sleeping mode after re-power on" value="0"/>
|
||||
<Item label="USB power, keep awake for 10 minutes after re-power on" value="1"/>
|
||||
<Item label="Battery power, sleeping mode after re-power on" value="256"/>
|
||||
<Item label="Battery power, keep awake for 10 minutes after re-power on" value="257"/>
|
||||
</Value>
|
||||
<Value genre="config" index="39" label="Low Battery" max="50" min="10" size="1" type="byte" value="20">
|
||||
<Help>Configure low battery value
|
||||
Value=10 to 50.</Help>
|
||||
</Value>
|
||||
<Value type="list" index="40" genre="config" label="Report Only On Thresholds" min="0" max="1" value="0" size="1">
|
||||
<Help>Enable/disable the selective reporting only when measurements reach a certain threshold or percentage
|
||||
</Value>
|
||||
<Value genre="config" index="40" label="Report Only On Thresholds" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Enable/disable the selective reporting only when measurements reach a certain threshold or percentage
|
||||
set in the threshold settings. This is used to reduce network
|
||||
traffic.</Help>
|
||||
<Item label="Disabled" value="0" />
|
||||
<Item label="Enabled" value="1" />
|
||||
</Value>
|
||||
<Value type="int" index="41" genre="config" label="Temperature Reporting Threshold" units="C/F" min="0" max="39321" value="20" size="4">
|
||||
<Help>Threshold change in temperature to induce an automatic report.
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Enabled" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="41" label="Temperature Reporting Threshold" max="39321" min="0" size="4" type="int" units="C/F" value="20">
|
||||
<Help>Threshold change in temperature to induce an automatic report.
|
||||
Note:
|
||||
1. The unit is Fahrenheit for US version, Celsius for EU/AU version.
|
||||
2. The value contains one decimal point. E.g. if the value is set to 20, the threshold value = 2.0 C (EU/AU) or 2.0 F (US). When the temperature has changed by 2.0 (of the appropriate unit), a temperature report will be sent.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="42" genre="config" label="Humidity Reporting Threshold" units="%" min="0" max="100" value="10" size="1">
|
||||
<Help>Threshold change in humidity to induce an automatic report.
|
||||
</Value>
|
||||
<Value genre="config" index="42" label="Humidity Reporting Threshold" max="100" min="0" size="1" type="byte" units="%" value="10">
|
||||
<Help>Threshold change in humidity to induce an automatic report.
|
||||
Note:
|
||||
1. The unit is %.
|
||||
2. The default value is 10, which means that a 10% change in humidity will trigger a report.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="43" genre="config" label="Luminance Reporting Threshold" units="LUX" min="0" max="1000" value="100" size="2">
|
||||
<Help>Threshold change in luminance to induce an automatic report.</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="44" genre="config" label="Battery Reporting Threshold" units="%" min="0" max="100" value="10" size="1">
|
||||
<Help>Threshold change in battery level to induce an automatic report.
|
||||
</Value>
|
||||
<Value genre="config" index="43" label="Luminance Reporting Threshold" max="1000" min="0" size="2" type="short" units="LUX" value="100">
|
||||
<Help>Threshold change in luminance to induce an automatic report.</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="44" label="Battery Reporting Threshold" max="100" min="0" size="1" type="byte" units="%" value="10">
|
||||
<Help>Threshold change in battery level to induce an automatic report.
|
||||
Note:
|
||||
1. The unit is %.
|
||||
2. The default value is 10, which means that a 10% change in battery will trigger a report.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="45" genre="config" label="UV Reporting Threshold" units="" min="0" max="255" value="2" read_only="true">
|
||||
<Help>Threshold change in ultraviolet to induce an automatic report.
|
||||
</Value>
|
||||
<Value genre="config" index="45" label="UV Reporting Threshold" max="255" min="0" read_only="true" type="byte" units="" value="2">
|
||||
<Help>Threshold change in ultraviolet to induce an automatic report.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" index="46" genre="config" label="Low Temp Alarm" min="0" max="1" value="0" size="1">
|
||||
<Help>Enable/disable to send the alarm report of low temperature(Less than 15 Degress C)
|
||||
</Value>
|
||||
<Value genre="config" index="46" label="Low Temp Alarm" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Enable/disable to send the alarm report of low temperature(Less than 15 Degress C)
|
||||
</Help>
|
||||
<Item label="Disabled" value="0" />
|
||||
<Item label="Enabled" value="1" />
|
||||
</Value>
|
||||
<Value type="byte" index="48" genre="config" label="Enable/disable to send a report on Threshold" units="" min="0" max="255" value="0" >
|
||||
<Help>
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Enabled" value="1"/>
|
||||
</Value>
|
||||
<Value bitmask="255" genre="config" index="48" label="Enable/disable to send a report on Threshold" size="1" type="bitset" units="" value="0">
|
||||
<Help>
|
||||
Enable/disable to send a report when the measurement is more than the upper limit value or less than the lower limit value.
|
||||
Bit mask = 0, disable.
|
||||
Bit mask = 1, enable.
|
||||
Bit 0 = temperature.
|
||||
Bit 1 = humidity.
|
||||
Bit 2 = luminance.
|
||||
Bit 3 = ultraviolet.
|
||||
The above bit masks are used to enable/disable to send out a report when the measurement is less than the lower limit value.
|
||||
The below bit masks are used to enable/disable to send out a report when the measurement is more than the upper limit value.
|
||||
Bit 4 = temperature.
|
||||
Bit 5 = humidity.
|
||||
Bit 6 = luminance.
|
||||
Bit 7 = ultraviolet.
|
||||
Note:
|
||||
If USB power, the Sensor will check the limit every 10 seconds. If battery power, the Sensor will check the limit when it is waken up.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="49" genre="config" label="Set the upper limit value of temperature sensor" value="71681" >
|
||||
<Help>
|
||||
<Help lang="fr">French Help</Help>
|
||||
<Label lang="fr">Enable/disable to send a report on Threshold-fr</Label>
|
||||
<BitSet id="1">
|
||||
<Label>Lower Temperature</Label>
|
||||
<Label lang="fr">Lower Temperature-fr</Label>
|
||||
<Help>Lower Temperature Threshold</Help>
|
||||
<Help lang="fr">Lower Temperature Threshold-fr</Help>
|
||||
</BitSet>
|
||||
<BitSet id="2">
|
||||
<Label>Lower Humidity</Label>
|
||||
<Label lang="fr">Lower Humidity-fr</Label>
|
||||
<Help>Lower Humdity Threshold</Help>
|
||||
<Help lang="fr">Lower Humdity Threshold-fr</Help>
|
||||
</BitSet>
|
||||
<BitSet id="3">
|
||||
<Label>Lower Luminance</Label>
|
||||
<Label lang="fr">Lower Luminance-fr</Label>
|
||||
<Help>Lower Luminance Threshold</Help>
|
||||
<Help lang="fr">Lower Luminance Threshold</Help>
|
||||
</BitSet>
|
||||
<BitSet id="4">
|
||||
<Label>Lower Ultraviolet</Label>
|
||||
<Label lang="fr">Lower Ultraviolet-fr</Label>
|
||||
<Help>Lower Ultraviolet Threshold</Help>
|
||||
<Help lang="fr">Lower Ultraviolet Threshold-fr</Help>
|
||||
</BitSet>
|
||||
<BitSet id="5">
|
||||
<Label>Upper Temperature</Label>
|
||||
<Label lang="fr">Upper Temperature-fr</Label>
|
||||
<Help>Upper Temerature Threshold</Help>
|
||||
<Help lang="fr">Upper Temerature Threshold-fr</Help>
|
||||
</BitSet>
|
||||
<BitSet id="6">
|
||||
<Label>Upper Humidity</Label>
|
||||
<Label lang="fr">Upper Humidity-fr</Label>
|
||||
<Help>Upper Humdity Threshold</Help>
|
||||
<Help lang="fr">Upper Humdity Threshold-fr</Help>
|
||||
</BitSet>
|
||||
<BitSet id="7">
|
||||
<Label>Upper Luminance</Label>
|
||||
<Label lang="fr">Upper Luminance-fr</Label>
|
||||
<Help>Upper Luminance Threshold</Help>
|
||||
<Help lang="fr">Upper Luminance Threshold-fr</Help>
|
||||
</BitSet>
|
||||
<BitSet id="8">
|
||||
<Label>Upper Ultraviolet</Label>
|
||||
<Label lang="fr">Upper Ultraviolet-fr</Label>
|
||||
<Help>Upper Ultraviolet Threshold</Help>
|
||||
<Help lang="fr">Upper Ultraviolet Threshold-fr</Help>
|
||||
</BitSet>
|
||||
</Value>
|
||||
<Value genre="config" index="49" label="Set the upper limit value of temperature sensor" type="int" value="71681">
|
||||
<Help>
|
||||
When the measurement is more than this upper limit, which will trigger to sent out a sensor report.
|
||||
High byte is the upper limit value. Low byte is the unit (0x01=Celsius, 0x02=Fahrenheit).
|
||||
1. When unit is Celsius.
|
||||
|
@ -119,9 +157,9 @@ V1.10 + V1.11 (12/14/2017)
|
|||
Upper limit range: -40.0 to 212.0 F (0xFE70 to 0x0848).
|
||||
E.g. The default upper limit of US version is 82.4F (0X0338), when the measurement is more than 82.4F, it will be triggered to send out a temperature sensor report.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="50" genre="config" label="Set the lower limit value of temperature sensor" value="1" >
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="50" label="Set the lower limit value of temperature sensor" type="int" value="1">
|
||||
<Help>
|
||||
When the measurement is less than this lower limit, which will trigger to sent out a sensor report.
|
||||
High byte is the lower limit value. Low byte is the unit (0x01=Celsius, 0x02=Fahrenheit).
|
||||
1. When unit is Celsius.
|
||||
|
@ -131,51 +169,51 @@ V1.10 + V1.11 (12/14/2017)
|
|||
Upper limit range: -40.0 to 212.0 F (0xFE70 to 0x0848).
|
||||
E.g. The default lower limit of US version is 32.0F (0x0140), when the measurement is less than 32.0F, it will be triggered to send out a temperature sensor report.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="51" genre="config" label="Set the upper limit value of humidity sensor" units="%" min="0" max="100" value="60" >
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="51" label="Set the upper limit value of humidity sensor" max="100" min="0" type="byte" units="%" value="60">
|
||||
<Help>
|
||||
When the measurement is more than this upper limit, which will trigger to sent out a sensor report.
|
||||
Upper limit range: 0 to 100%.
|
||||
E.g. The default upper limit is 60%, when the measurement is more than 60%, it will be triggered to send out a humidity sensor report.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="52" genre="config" label="Set the lower limit value of humidity sensor" units="%" min="0" max="100" value="50" >
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="52" label="Set the lower limit value of humidity sensor" max="100" min="0" type="byte" units="%" value="50">
|
||||
<Help>
|
||||
When the measurement is less than this lower limit, which will trigger to sent out a sensor report.
|
||||
Lower limit range: 0 to 100%.
|
||||
E.g. The default lower limit is 50%, when the measurement is less than 50%, it will be triggered to send out a humidity sensor report.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="53" genre="config" label="Set the upper limit value of Lighting sensor" units="lux" min="0" max="30000" value="1000" >
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="53" label="Set the upper limit value of Lighting sensor" max="30000" min="0" type="short" units="lux" value="1000">
|
||||
<Help>
|
||||
When the measurement is more than this upper limit, which will trigger to sent out a sensor report.
|
||||
Upper limit range: 0 to 30000 Lux.
|
||||
E.g. The default upper limit is 1000Lux, when the measurement is more than 1000Lux, it will be triggered to send out a Lighting sensor report.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="54" genre="config" label="Set the lower limit value of Lighting sensor" units="lux" min="0" max="30000" value="100" >
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="54" label="Set the lower limit value of Lighting sensor" max="30000" min="0" type="short" units="lux" value="100">
|
||||
<Help>
|
||||
When the measurement is less than this lower limit, which will trigger to sent out a sensor report.
|
||||
Lower limit range: 0 to 30000 Lux.
|
||||
E.g. The default lower limit is 100Lux, when the measurement is less than 100Lux, it will be triggered to send out a Lighting sensor report.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="55" genre="config" label="Set the upper limit value of ultraviolet sensor" units="UV" min="1" max="11" value="8" >
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="55" label="Set the upper limit value of ultraviolet sensor" max="11" min="1" type="byte" units="UV" value="8">
|
||||
<Help>
|
||||
When the measurement is more than this upper limit, which will trigger to sent out a sensor report.
|
||||
Upper limit range: 1 to 11.
|
||||
E.g. The default upper limit is 8, when the measurement is more than 8, it will be triggered to send out a ultraviolet sensor report.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="56" genre="config" label="Set the lower limit value of ultraviolet sensor" units="UV" min="1" max="11" value="4" >
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="56" label="Set the lower limit value of ultraviolet sensor" max="11" min="1" type="byte" units="UV" value="4">
|
||||
<Help>
|
||||
When the measurement is less than this upper limit, which will trigger to sent out a sensor report.
|
||||
Lower limit range: 1 to 11.
|
||||
E.g. The default lower limit is 4, when the measurement is less than 8, it will be triggered to send out a ultraviolet sensor report.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="57" genre="config" label="Set the recover limit value of temperature sensor" value="5121" >
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="57" label="Set the recover limit value of temperature sensor" type="short" value="5121">
|
||||
<Help>
|
||||
Note:
|
||||
1. When the current measurement lower or equal (Upper limit - Recover limit), the upper limit report is enabled and then it would send out a sensor report when the next measurement is more than the upper limit.
|
||||
After that, the upper limit report would be disabled again until the measurement lower or equal (Upper limit - Recover limit).
|
||||
|
@ -185,9 +223,9 @@ V1.10 + V1.11 (12/14/2017)
|
|||
4. Recover limit range: 1.0 to 25.5 C/ F (0x0101 to 0xFF01 or 0x0102 to 0xFF02).
|
||||
E.g. The default recover limit value is 2.0 C/F (0x1401/0x1402), when the measurement is less than (Upper limit - 2), the upper limit report would be enabled one time or when the measurement is more than (Lower limit + 2), the lower limit report would be enabled one time.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="58" genre="config" label="Set the recover limit value of humidity sensor" units="%" min="1" max="255" value="5" >
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="58" label="Set the recover limit value of humidity sensor" max="255" min="1" type="byte" units="%" value="5">
|
||||
<Help>
|
||||
Note:
|
||||
1. When the current measurement lower or equal (Upper limit - Recover limit), the upper limit report is enabled and then it would send out a sensor report when the next measurement is more than the upper limit.
|
||||
After that the upper limit report would be disabled again until the measurement lower or equal (Upper limit - Recover limit).
|
||||
|
@ -195,10 +233,10 @@ V1.10 + V1.11 (12/14/2017)
|
|||
After that the lower limit report would be disabled again until the measurement greater or equal(Lower limit + Recover limit).
|
||||
3. Recover limit range: 1 to 50% (0x01 to 0x32).
|
||||
E.g. The default recover limit value is 5%, when the measurement is less than (Upper limit - 5), the upper limit report would be enabled one time or when the measurement is more than (Lower limit + 5), the lower limit report would be enabled one time.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="59" genre="config" label="Set the recover limit value of Lighting sensor" units="10xlux" min="1" max="255" value="10" >
|
||||
<Help>
|
||||
</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="59" label="Set the recover limit value of Lighting sensor" max="255" min="1" type="byte" units="10xlux" value="10">
|
||||
<Help>
|
||||
Note:
|
||||
1. When the current measurement lower or equal (Upper limit - Recover limit), the upper limit report is enabled and then it would send out a sensor report when the next measurement is more than the upper limit.
|
||||
After that the upper limit report would be disabled again until the measurement lower or equal (Upper limit - Recover limit).
|
||||
|
@ -208,9 +246,9 @@ V1.10 + V1.11 (12/14/2017)
|
|||
4. Recover limit range: 10 to 2550Lux (0x01 to 0xFF).
|
||||
E.g. The default recover limit value is 100 Lux, when the measurement is less than (Upper limit - 100), the upper limit report would be enabled one time or when the measurement is more than (Lower limit + 100), the lower limit report would be enabled one time.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="60" genre="config" label="Set the recover limit value of Ultraviolet sensor" units="UV" min="1" max="5" value="2" >
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="60" label="Set the recover limit value of Ultraviolet sensor" max="5" min="1" type="byte" units="UV" value="2">
|
||||
<Help>
|
||||
Note:
|
||||
1. When the current measurement lower or equal (Upper limit - Recover limit), the upper limit report is enabled and then it would send out a sensor report when the next measurement is more than the upper limit.
|
||||
After that the upper limit report would be disabled again until the measurement lower or equal (Upper limit - Recover limit).
|
||||
|
@ -219,9 +257,9 @@ V1.10 + V1.11 (12/14/2017)
|
|||
3. Recover limit range: 1 to 50% (0x01 to 0x32).
|
||||
E.g. The default recover limit value is 5%, when the measurement is less than (Upper limit - 5), the upper limit report would be enabled one time or when the measurement is more than (Lower limit + 5), the lower limit report would be enabled one time.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="61" genre="config" label="Get the out-of-limit state of the Sensors" units="" min="0" max="255" value="0" read_only="true">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="61" label="Get the out-of-limit state of the Sensors" max="255" min="0" read_only="true" type="byte" units="" value="0">
|
||||
<Help>
|
||||
Get the out-of-limit state of the Sensors.
|
||||
Bit mask = 0, within the limit.
|
||||
Bit mask = 1, out of the limit.
|
||||
|
@ -236,23 +274,55 @@ V1.10 + V1.11 (12/14/2017)
|
|||
Bit 6 = luminance.
|
||||
Bit 7 = ultraviolet.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" index="64" genre="config" label="Temperature scale" min="1" max="2" value="1" size="1">
|
||||
<Help>Default value: Celsius for EU/AU version, Fahrenheit for US version.</Help>
|
||||
<Item label="Celsius" value="1" />
|
||||
<Item label="Fahrenheit" value="2" />
|
||||
</Value>
|
||||
<Value type="list" index="81" genre="config" label="LED blinking report" min="0" max="2" value="0" size="1">
|
||||
<Help>Enable/disable the LED blinking for motion, wakeup, and sensor report.</Help>
|
||||
<Item label="Enable LED blinking" value="0" />
|
||||
<Item label="Disable LED blinking only when the PIR is triggered" value="1" />
|
||||
<Item label="Completely disable LED for motion, wakeup, and sensor report" value="2" />
|
||||
</Value>
|
||||
<Value type="button" index="100" genre="config" label="Reset Params 101-103 to Default" write_only="true" affects="101,102,103">
|
||||
<Help>Reset The Reporting Group Configuration (101 to 103) to default</Help>
|
||||
</Value>
|
||||
<Value type="int" index="101" genre="config" label="Group 1 Reports" value="241">
|
||||
<Help>Which reports need to send automatically in timing intervals for group 1.
|
||||
</Value>
|
||||
<Value genre="config" index="64" label="Temperature scale" max="2" min="1" size="1" type="list" value="1">
|
||||
<Help>Default value: Celsius for EU/AU version, Fahrenheit for US version.</Help>
|
||||
<Item label="Celsius" value="1"/>
|
||||
<Item label="Fahrenheit" value="2"/>
|
||||
</Value>
|
||||
<Value genre="config" index="81" label="LED blinking report" max="2" min="0" size="1" type="list" value="0">
|
||||
<Help>Enable/disable the LED blinking for motion, wakeup, and sensor report.</Help>
|
||||
<Item label="Enable LED blinking" value="0"/>
|
||||
<Item label="Disable LED blinking only when the PIR is triggered" value="1"/>
|
||||
<Item label="Completely disable LED for motion, wakeup, and sensor report" value="2"/>
|
||||
</Value>
|
||||
<Value affects="101,102,103" genre="config" index="100" label="Reset Params 101-103 to Default" type="button" write_only="true">
|
||||
<Help>Reset The Reporting Group Configuration (101 to 103) to default</Help>
|
||||
</Value>
|
||||
<Value bitmask="241" genre="config" index="101" label="Group 1 Reports" size="4" type="bitset" value="241">
|
||||
<Help>Which reports need to send automatically in timing intervals for group 1.
|
||||
Bitmask:
|
||||
10000000 - 128 - Luminance
|
||||
01000000 - 64 - Humidity
|
||||
00100000 - 32 - Temperature
|
||||
00010000 - 16 - Ultraviolet
|
||||
00000001 - 1 - Battery
|
||||
10100000 - 160 - Luminance and Temperature (32+128)
|
||||
11110001 - 241 - All (1+16+32+64+128)
|
||||
</Help>
|
||||
<BitSet id="1">
|
||||
<Label>Battery</Label>
|
||||
<Help>Send Battery Report</Help>
|
||||
</BitSet>
|
||||
<BitSet id="5">
|
||||
<Label>Ultraviolet</Label>
|
||||
<Help>Send Ultraviolet Report</Help>
|
||||
</BitSet>
|
||||
<BitSet id="6">
|
||||
<Label>Temperature</Label>
|
||||
<Help>Send Temperature Report</Help>
|
||||
</BitSet>
|
||||
<BitSet id="7">
|
||||
<Label>Humidity</Label>
|
||||
<Help>Send Humidity Report</Help>
|
||||
</BitSet>
|
||||
<BitSet id="8">
|
||||
<Label>Luminance</Label>
|
||||
<Help>Send Luminance Report</Help>
|
||||
</BitSet>
|
||||
</Value>
|
||||
<Value genre="config" index="102" label="Group 2 Reports" type="int" value="0">
|
||||
<Help>Which reports need to send automatically in timing intervals for group 2.
|
||||
Bitmask:
|
||||
10000000 - 128 - Luminance
|
||||
01000000 - 64 - Humidity
|
||||
|
@ -261,9 +331,9 @@ V1.10 + V1.11 (12/14/2017)
|
|||
00000001 - 1 - Battery
|
||||
10100000 - 160 - Luminance and Temperature (32+128)
|
||||
11110001 - 241 - All (1+16+32+64+128)</Help>
|
||||
</Value>
|
||||
<Value type="int" index="102" genre="config" label="Group 2 Reports" value="0">
|
||||
<Help>Which reports need to send automatically in timing intervals for group 2.
|
||||
</Value>
|
||||
<Value genre="config" index="103" label="Group 3 Reports" type="int" value="0">
|
||||
<Help>Which reports need to send automatically in timing intervals for group 3.
|
||||
Bitmask:
|
||||
10000000 - 128 - Luminance
|
||||
01000000 - 64 - Humidity
|
||||
|
@ -272,42 +342,31 @@ V1.10 + V1.11 (12/14/2017)
|
|||
00000001 - 1 - Battery
|
||||
10100000 - 160 - Luminance and Temperature (32+128)
|
||||
11110001 - 241 - All (1+16+32+64+128)</Help>
|
||||
</Value>
|
||||
<Value type="int" index="103" genre="config" label="Group 3 Reports" value="0">
|
||||
<Help>Which reports need to send automatically in timing intervals for group 3.
|
||||
Bitmask:
|
||||
10000000 - 128 - Luminance
|
||||
01000000 - 64 - Humidity
|
||||
00100000 - 32 - Temperature
|
||||
00010000 - 16 - Ultraviolet
|
||||
00000001 - 1 - Battery
|
||||
10100000 - 160 - Luminance and Temperature (32+128)
|
||||
11110001 - 241 - All (1+16+32+64+128)</Help>
|
||||
</Value>
|
||||
<Value type="button" index="110" genre="config" label="Reset Params 111-113 to Default" write_only="true" affects="111,112,113">
|
||||
<Help>Reset The Reporting Group Interval Configuration (111 to 113) to default</Help>
|
||||
</Value>
|
||||
<!-- Applications can check IsNodeListeningDevice to determine if the device is on USB power (listening) or battery (not listening) -->
|
||||
<Value type="int" index="111" genre="config" label="Group 1 Interval" units="seconds" min="1" max="2678400" value="3600">
|
||||
<Help>The interval for sending reports for group 1.
|
||||
</Value>
|
||||
<Value affects="111,112,113" genre="config" index="110" label="Reset Params 111-113 to Default" type="button" write_only="true">
|
||||
<Help>Reset The Reporting Group Interval Configuration (111 to 113) to default</Help>
|
||||
</Value>
|
||||
<!-- Applications can check IsNodeListeningDevice to determine if the device is on USB power (listening) or battery (not listening) -->
|
||||
<Value genre="config" index="111" label="Group 1 Interval" max="2678400" min="1" type="int" units="seconds" value="3600">
|
||||
<Help>The interval for sending reports for group 1.
|
||||
The effective behavior of this setting depends on the device's power source:
|
||||
- If the device is on USB power, it will send the reports at the configured interval; set it to something low (~15-60 seconds) to get frequent updates from a powered device.
|
||||
- If the device is on battery, the sensor will never report in more often than its configured wake interval, regardless of what this setting is configured to; setting this to 3601 when the wake interval is 3600 would make this group report in every 7200 seconds. 240 seconds is the minimum wake interval, but will quickly use battery.</Help>
|
||||
</Value>
|
||||
<Value type="int" index="112" genre="config" label="Group 2 Interval" units="seconds" min="1" max="2678400" value="3600">
|
||||
<Help>The interval for sending reports for group 2.
|
||||
</Value>
|
||||
<Value genre="config" index="112" label="Group 2 Interval" max="2678400" min="1" type="int" units="seconds" value="3600">
|
||||
<Help>The interval for sending reports for group 2.
|
||||
The effective behavior of this setting depends on the device's power source:
|
||||
- If the device is on USB power, it will send the reports at the configured interval; set it to something low (~15-60 seconds) to get frequent updates from a powered device.
|
||||
- If the device is on battery, the sensor will never report in more often than its configured wake interval, regardless of what this setting is configured to; setting this to 3601 when the wake interval is 3600 would make this group report in every 7200 seconds. 240 seconds is the minimum wake interval, but will quickly use battery.</Help>
|
||||
</Value>
|
||||
<Value type="int" index="113" genre="config" label="Group 3 Interval" units="seconds" min="1" max="2678400" value="3600">
|
||||
<Help>The interval for sending reports for group 3.
|
||||
</Value>
|
||||
<Value genre="config" index="113" label="Group 3 Interval" max="2678400" min="1" type="int" units="seconds" value="3600">
|
||||
<Help>The interval for sending reports for group 3.
|
||||
The effective behavior of this setting depends on the device's power source:
|
||||
- If the device is on USB power, it will send the reports at the configured interval; set it to something low (~15-60 seconds) to get frequent updates from a powered device.
|
||||
- If the device is on battery, the sensor will never report in more often than its configured wake interval, regardless of what this setting is configured to; setting this to 3601 when the wake interval is 3600 would make this group report in every 7200 seconds. 240 seconds is the minimum wake interval, but will quickly use battery.</Help>
|
||||
</Value>
|
||||
<Value type="short" index="201" genre="config" label="Temperature Calibration" value="1">
|
||||
<Help>Temperature calibration (the available value range is [-128,127] or [-12.8C,12.7C]).
|
||||
</Value>
|
||||
<Value genre="config" index="201" label="Temperature Calibration" type="short" value="1">
|
||||
<Help>Temperature calibration (the available value range is [-128,127] or [-12.8C,12.7C]).
|
||||
Note:
|
||||
1. High byte is the calibration value. Low byte is the unit (0x01=Celsius,0x02=Fahrenheit)
|
||||
2. The calibration value (high byte) contains one decimal point.
|
||||
|
@ -317,51 +376,52 @@ V1.10 + V1.11 (12/14/2017)
|
|||
If the measure value =30.1C and the standard value = 33.2C, so the calibration value= 33.2C - 30.1C=3.1C (0x1F).
|
||||
Default value: 1 for EU/AU version, 2 for US version.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="202" genre="config" label="Humidity Calibration" min="0" max="255" value="0">
|
||||
<Help>The calibration value = standard value - measure value.
|
||||
</Value>
|
||||
<Value genre="config" index="202" label="Humidity Calibration" max="255" min="0" type="byte" value="0">
|
||||
<Help>The calibration value = standard value - measure value.
|
||||
(the available value range is [-50, 50]).
|
||||
If measure value =80RH and the standard value = 75RH, so the calibration value= 75RH-80RH = -5RH (0xFB).
|
||||
If the measure value =85RH and the standard value = 90RH, so the calibration value= 90RH-85RH = 5RH (0x05).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" index="203" genre="config" label="Luminance Calibration" min="0" max="65535" value="0">
|
||||
<Help>The calibration value = standard value - measure value.
|
||||
</Value>
|
||||
<Value genre="config" index="203" label="Luminance Calibration" max="65535" min="0" type="short" value="0">
|
||||
<Help>The calibration value = standard value - measure value.
|
||||
(the available value range is [-1000, 1000]).
|
||||
If measure value =800Lux and the standard value = 750Lux, so the calibration value= 750-800 = -50 (0xFFCE).
|
||||
If the measure value =850Lux and the standard value = 900Lux, so the calibration value= 900-850 = 50 (0x0032).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="204" genre="config" label="Ultraviolet Calibration" min="0" max="255" value="0">
|
||||
<Help>The calibration value = standard value measure value.
|
||||
</Value>
|
||||
<Value genre="config" index="204" label="Ultraviolet Calibration" max="255" min="0" type="byte" value="0">
|
||||
<Help>The calibration value = standard value measure value.
|
||||
(the available value range is [-10, 10]).
|
||||
If measure value =9 and the standard value = 8, so the calibration value= 8-9 = -1 (0xFE).
|
||||
If the measure value =7 and the standard value = 9, so the calibration value= 9-7 = 2 (0x02).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" index="252" genre="config" label="Enable/disable Lock Configuration" units="" min="0" max="1" value="0" size="1">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="252" label="Enable/disable Lock Configuration" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>
|
||||
Enable/disable Lock Configuration
|
||||
</Help>
|
||||
<Item label="Disable" value="0" />
|
||||
<Item label="Enable" value="1" />
|
||||
</Value>
|
||||
<Value type="list" index="255" genre="config" label="Reset To Factory Defaults" size="4" value="1" write_only="true">
|
||||
<Help>Reset to factory defaults</Help>
|
||||
<Item label="Reset to factory default setting" value="0"/>
|
||||
<Item label="Normal" value="1"/>
|
||||
<Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
|
||||
<!-- the Device Doesn't support Get for Alarm Class -->
|
||||
<CommandClass id="113" getsupported="false"/>
|
||||
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="5" label="LifeLine" />
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="255" label="Reset To Factory Defaults" size="4" type="list" value="1" write_only="true">
|
||||
<Help>Reset to factory defaults</Help>
|
||||
<Item label="Reset to factory default setting" value="0"/>
|
||||
<Item label="Normal" value="1"/>
|
||||
<Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- the Device Doesn't support Get for Alarm Class -->
|
||||
<CommandClass id="113">
|
||||
<Compatibility>
|
||||
<GetSupported>false</GetSupported>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" label="LifeLine" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -4,7 +4,7 @@ Aeotec ZW111 Nano Dimmer, base on Engineering Spec 3/6/2018 V2.02
|
|||
Product Type ID: EU=0x00, US=0x01, AU=0x02 CN=0x1D
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6048080397
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="3">
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="3" genre="config" label="Over current protection" units="" min="0" max="1" size="1" value="1">
|
||||
|
|
|
@ -1,59 +1,58 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Aeotec ZW112 Door Window Sensor 6
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6014057567
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Alarm CC isn't supported on this device-->
|
||||
<CommandClass id="113" action="remove"/>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" genre="config" instance="1" index="1" label="Value when the Magnet is triggered" min="0" max="1" value="0" size="1">
|
||||
<Help>Which value of the Sensor Binary Report or Basic Set will be sent when the door is Opened/Closed</Help>
|
||||
<Item label="Open: 0xFF, Close: 0x00" value="0"/>
|
||||
<Item label="Open: 0x00, Close: 0xFF" value="1"/>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="39" label="Set the low battery value" min="10" max="50" value="20" size="1">
|
||||
<Help>10% to 50%</Help>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="101" label="Low Battery Check" min="0" max="1" size="1" value="0">
|
||||
<Help>Enable/disable the low battery checking</Help>
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Enabled" value="1"/>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="111" label="Interval time of low battery checking" size="4" min="0" max="2147483647" value="86640">
|
||||
<Help>
|
||||
<!-- Aeon Labs Door/Window Sensor 6 -->
|
||||
<Product Revision="3" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<!-- Alarm CC isn't supported on this device-->
|
||||
<CommandClass action="remove" id="113"/>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="1" instance="1" label="Value when the Magnet is triggered" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Which value of the Sensor Binary Report or Basic Set will be sent when the door is Opened/Closed</Help>
|
||||
<Item label="Open: 0xFF, Close: 0x00" value="0"/>
|
||||
<Item label="Open: 0x00, Close: 0xFF" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="39" instance="1" label="Set the low battery value" max="50" min="10" size="1" type="byte" value="20">
|
||||
<Help>10% to 50%</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="101" instance="1" label="Low Battery Check" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Enable/disable the low battery checking</Help>
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Enabled" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="111" instance="1" label="Interval time of low battery checking" max="2147483647" min="0" size="4" type="int" value="86640">
|
||||
<Help>
|
||||
The minimum interval is 4 minutes
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="121" label="Report Type to Send" size="1" min="0" max="3" value="1">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="121" instance="1" label="Report Type to Send" max="3" min="0" size="1" type="list" value="1">
|
||||
<Help>
|
||||
Configure which sensor report will be sent when the door is Opened/Closed
|
||||
</Help>
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Basic Set" value="1"/>
|
||||
<Item label="Sensor Binary Report" value="2"/>
|
||||
<Item label="Basic Set and Sensor Binary Report" value="3"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" index="252" label="Lock/Unlock Configuration" min="0" max="1" size="1" value="0">
|
||||
<Help>Lock/ unlock all configuration parameters</Help>
|
||||
<Item label="Unlock" value="0"/>
|
||||
<Item label="Lock" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="255" genre="config" label="Reset To Factory Defaults" size="4" value="1" >
|
||||
<Help>Reset to factory defaults</Help>
|
||||
<Item label="Reset to factory default setting" value="0"/>
|
||||
<Item label="Normal" value="1"/>
|
||||
<Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Basic set as report-->
|
||||
<CommandClass id="32" setasreport="true"/>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="5" label="Lifeline"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Basic Set" value="1"/>
|
||||
<Item label="Sensor Binary Report" value="2"/>
|
||||
<Item label="Basic Set and Sensor Binary Report" value="3"/>
|
||||
</Value>
|
||||
<Value genre="config" index="252" label="Lock/Unlock Configuration" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Lock/ unlock all configuration parameters</Help>
|
||||
<Item label="Unlock" value="0"/>
|
||||
<Item label="Lock" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="255" label="Reset To Factory Defaults" size="4" type="list" value="1">
|
||||
<Help>Reset to factory defaults</Help>
|
||||
<Item label="Reset to factory default setting" value="0"/>
|
||||
<Item label="Normal" value="1"/>
|
||||
<Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Basic set as report-->
|
||||
<CommandClass id="32">
|
||||
<Compatibility>
|
||||
<SetAsReport>true</SetAsReport>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" label="Lifeline" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -3,14 +3,14 @@
|
|||
Aeotec ZW116 Nano Switch, base on Engineering Spec 03/19/2018 V2.0
|
||||
Product Type ID: EU=0x00, US=0x01, AU=0x02 CN=0x1D
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="3" genre="config" label="Over current protection" units="" min="0" max="1" size="1" value="1">
|
||||
<Help>Output load will be closed after 30 seconds if the current exceeds (US: 15.5A, AU or EU: 10.5A).</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="3">
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="3" genre="config" label="Over current protection" units="" min="0" max="1" size="1" value="1">
|
||||
<Help>Output load will be closed after 30 seconds if the current exceeds (US: 15.5A, AU or EU: 10.5A).</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="4" genre="config" label="Over heat protection" units="" min="0" max="1" size="1" value="0">
|
||||
<Help>Output load will be closed after 30 seconds if the temperature inside the product exceeds 100C.</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
|
|
|
@ -1,42 +1,45 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Aeotec ZW117 Range Extender 6, base on Engineering Spec 5/31/2016
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- COMMAND_CLASS_BASIC -->
|
||||
<CommandClass id="32" getsupported="false"/>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" genre="config" instance="1" index="82" label="LED when the Range Extender relays Z-Wave message" min="0" max="1" value="0" size="1">
|
||||
<Help>Set the default status of the LED when the Range Extender relays Z-Wave message.</Help>
|
||||
<Item label="On for 2 seconds" value="0"/>
|
||||
<Item label="Off" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="200" genre="config" label="Partner ID" units="" min="0" max="1" size="1" value="0">
|
||||
<Help>Partner ID</Help>
|
||||
<Item label="Aeon Labs Standard (Default)" value="0"/>
|
||||
<Item label="Others" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="252" genre="config" label="Configuration Locked" units="" min="0" max="1" size="1" value="0">
|
||||
<Help>Enable/disable Configuration Locked</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="short" index="254" genre="config" label="Device tag" units="" min="0" max="65535" value="0">
|
||||
<Help>Device tag.</Help>
|
||||
</Value>
|
||||
<Value type="list" index="255" genre="config" label="Reset To Factory Defaults" size="4" value="1" write_only="true">
|
||||
<Help>Reset to factory defaults</Help>
|
||||
<Item label="Reset to factory default setting" value="0"/>
|
||||
<Item label="Normal" value="1"/>
|
||||
<Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="2">
|
||||
<Group index="1" max_associations="5" label="Lifeline"/>
|
||||
<Group index="2" max_associations="5" label="Retransmit"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
<Product Revision="2" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<!-- COMMAND_CLASS_BASIC -->
|
||||
<CommandClass id="32">
|
||||
<Compatibility>
|
||||
<GetSupported>false</GetSupported>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="82" instance="1" label="LED when the Range Extender relays Z-Wave message" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Set the default status of the LED when the Range Extender relays Z-Wave message.</Help>
|
||||
<Item label="On for 2 seconds" value="0"/>
|
||||
<Item label="Off" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="200" label="Partner ID" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Partner ID</Help>
|
||||
<Item label="Aeon Labs Standard (Default)" value="0"/>
|
||||
<Item label="Others" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="252" label="Configuration Locked" max="1" min="0" size="1" type="list" units="" value="0">
|
||||
<Help>Enable/disable Configuration Locked</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="254" label="Device tag" max="65535" min="0" type="short" units="" value="0">
|
||||
<Help>Device tag.</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="255" label="Reset To Factory Defaults" size="4" type="list" value="1" write_only="true">
|
||||
<Help>Reset to factory defaults</Help>
|
||||
<Item label="Reset to factory default setting" value="0"/>
|
||||
<Item label="Normal" value="1"/>
|
||||
<Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="2">
|
||||
<Group index="1" label="Lifeline" max_associations="5"/>
|
||||
<Group index="2" label="Retransmit" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -1,31 +1,27 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Aeotec ZW120 Door/Window Sensor Gen5, base on Engineering Spec 08/01/2016
|
||||
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" genre="config" instance="1" index="1" label="Sensor Binary Report" min="0" max="1" value="0" size="1">
|
||||
<Help>Which value of the Sensor Binary Report will be sent when the door is Opened/Closed</Help>
|
||||
<Item label="Open: 0xFF, Close: 0x00" value="0"/>
|
||||
<Item label="Open: 0x00, Close: 0xFF" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="2" label="Enable wake up 10 minutes when re-power on the sensor" min="0" max="1" value="1" size="1">
|
||||
<Help>Default setting: Disable</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="3" label="Basic Set Report" min="0" max="1" value="0" size="1">
|
||||
<Help>Which value of the Basic Set will be sent when the door is Opened/Closed</Help>
|
||||
<Item label="Open: 0xFF, Close: 0x00" value="0"/>
|
||||
<Item label="Open: 0x00, Close: 0xFF" value="1"/>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="39" label="Set the low battery value" min="10" max="50" value="10" size="1">
|
||||
<Help>10% to 50%</Help>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="111" label="Interval time of battery report" size="4" min="0" max="2147483647" value="0">
|
||||
<Help>
|
||||
<!-- Aeon Labs Door/Window Sensor Gen5 (ZW120) base on Engineering Spec 08/01/2016 -->
|
||||
<Product Revision="2" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="1" instance="1" label="Sensor Binary Report" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Which value of the Sensor Binary Report will be sent when the door is Opened/Closed</Help>
|
||||
<Item label="Open: 0xFF, Close: 0x00" value="0"/>
|
||||
<Item label="Open: 0x00, Close: 0xFF" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="2" instance="1" label="Enable wake up 10 minutes when re-power on the sensor" max="1" min="0" size="1" type="list" value="1">
|
||||
<Help>Default setting: Disable</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="3" instance="1" label="Basic Set Report" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Which value of the Basic Set will be sent when the door is Opened/Closed</Help>
|
||||
<Item label="Open: 0xFF, Close: 0x00" value="0"/>
|
||||
<Item label="Open: 0x00, Close: 0xFF" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="39" instance="1" label="Set the low battery value" max="50" min="10" size="1" type="byte" value="10">
|
||||
<Help>10% to 50%</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="111" instance="1" label="Interval time of battery report" max="2147483647" min="0" size="4" type="int" value="0">
|
||||
<Help>
|
||||
Set the interval time of battery report.
|
||||
Value=0, disable the battery report for a interval time.
|
||||
Value=1 to 0x7FFFFFFF, the interval time of battery report is set.
|
||||
|
@ -35,28 +31,31 @@ Aeotec ZW120 Door/Window Sensor Gen5, base on Engineering Spec 08/01/2016
|
|||
If the value is more than 240 and less than 480, the interval is 8 minutes.
|
||||
2, if the current battery report falls below the low battery value (configurable parameter 39), it will send battery report=0xFF.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="121" label="Report type" min="0" max="65535" value="256" size="4">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="121" instance="1" label="Report type" max="65535" min="0" size="4" type="int" value="256">
|
||||
<Help>
|
||||
To configure which sensor report will be sent when the Sensor is triggered Opened/Closed.
|
||||
Bitsets: 0->Battery report, 4->Sensor Binary, 8->Basic Set, Default setting: 0x00000100 (Basic Set).
|
||||
Ideal Setting for OZW is 17 (Sensor Binary and Battery Report).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" index="255" genre="config" label="Reset To Factory Defaults" size="4" value="1" write_only="true">
|
||||
<Help>Reset to factory defaults</Help>
|
||||
<Item label="Reset to factory default setting" value="0"/>
|
||||
<Item label="Normal" value="1"/>
|
||||
<Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
|
||||
<!-- Basic set as report-->
|
||||
<CommandClass id="32" setasreport="true"/>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" max_associations="5" label="Lifeline"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Value>
|
||||
<Value genre="config" index="255" label="Reset To Factory Defaults" size="4" type="list" value="1" write_only="true">
|
||||
<Help>Reset to factory defaults</Help>
|
||||
<Item label="Reset to factory default setting" value="0"/>
|
||||
<Item label="Normal" value="1"/>
|
||||
<Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Basic set as report-->
|
||||
<CommandClass id="32">
|
||||
<Compatibility>
|
||||
<SetAsReport>true</SetAsReport>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="1">
|
||||
<Group index="1" label="Lifeline" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<!--
|
||||
Aeotec ZW121 LED Strip, base on Engineering Spec 5/20/2016
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="1">
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" genre="config" instance="1" index="20" label="Re-power On state" min="0" max="2" value="0" size="1">
|
||||
|
|
|
@ -1,48 +1,51 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Aeotec ZW122 Water Sensor 6
|
||||
http://products.z-wavealliance.org/products/2437
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- Basic get not supported -->
|
||||
<CommandClass id="32" getsupported="false"/>
|
||||
<!-- COMMAND_CLASS_BINARY_SENSOR. This class is in the list reported by the device, but it does not respond to requests-->
|
||||
<CommandClass id="48" action="remove"/>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" genre="config" instance="1" index="2" label="Waking up for 10 minutes when re-power on" min="0" max="1" size="1" value="0">
|
||||
<Help>Enable/Disable waking up for 10 minutes when re-power on (battery mode) the Water Sensor.</Help>
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Enabled" value="1"/>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="8" label="Timeout of awake after the Wake Up CC is sent out" min="8" max="127" units="seconds" value="30" size="1">
|
||||
<Help>
|
||||
<Product Revision="7" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<!-- Basic get not supported -->
|
||||
<CommandClass id="32">
|
||||
<Compatibility>
|
||||
<GetSupported>false</GetSupported>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- COMMAND_CLASS_BINARY_SENSOR. This class is in the list reported by the device, but it does not respond to requests-->
|
||||
<CommandClass action="remove" id="48"/>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="2" instance="1" label="Waking up for 10 minutes when re-power on" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Enable/Disable waking up for 10 minutes when re-power on (battery mode) the Water Sensor.</Help>
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Enabled" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="8" instance="1" label="Timeout of awake after the Wake Up CC is sent out" max="127" min="8" size="1" type="byte" units="seconds" value="30">
|
||||
<Help>
|
||||
Set the timeout of awake after the Wake Up CC is sent out.
|
||||
Available rang is 8 to 127 seconds.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="9" label="Current power mode" min="0" max="258" size="2" value="0" read_only="true">
|
||||
<Help>Report the current power mode and the product state for battery power mode</Help>
|
||||
<Item label="USB power, sleeping mode after re-power on" value="0"/>
|
||||
<Item label="USB power, keep awake for 10 minutes after re-power on" value="1"/>
|
||||
<Item label="USB power, always awake state" value="2"/>
|
||||
<Item label="Battery power, sleeping mode after re-power on" value="256"/>
|
||||
<Item label="Battery power, keep awake for 10 minutes after re-power on" value="257"/>
|
||||
<Item label="Battery power, always awake state" value="258"/>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="10" label="Alarm time for the Buzzer" min="655360" max="2147483647" value="1968650" size="4">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="9" instance="1" label="Current power mode" max="258" min="0" read_only="true" size="2" type="list" value="0">
|
||||
<Help>Report the current power mode and the product state for battery power mode</Help>
|
||||
<Item label="USB power, sleeping mode after re-power on" value="0"/>
|
||||
<Item label="USB power, keep awake for 10 minutes after re-power on" value="1"/>
|
||||
<Item label="USB power, always awake state" value="2"/>
|
||||
<Item label="Battery power, sleeping mode after re-power on" value="256"/>
|
||||
<Item label="Battery power, keep awake for 10 minutes after re-power on" value="257"/>
|
||||
<Item label="Battery power, always awake state" value="258"/>
|
||||
</Value>
|
||||
<Value genre="config" index="10" instance="1" label="Alarm time for the Buzzer" max="2147483647" min="655360" size="4" type="int" value="1968650">
|
||||
<Help>
|
||||
Set the alarm time for the Buzzer when the sensor is triggered.
|
||||
1 to 255 Repeated cycle of Buzzer alarm.
|
||||
256 to 65535 the time of Buzzer keeping ON state (MSB).
|
||||
65536 to 2147483647 The time of Buzzer keeping OFF state.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="39" label="Set the low battery value" min="10" max="50" value="20" units="%" size="1">
|
||||
<Help>10% to 50%</Help>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="48" label="Sensor report" min="0" max="55" size="1" value="55">
|
||||
<Help>Enable/disable the sensor report:
|
||||
</Value>
|
||||
<Value genre="config" index="39" instance="1" label="Set the low battery value" max="50" min="10" size="1" type="byte" units="%" value="20">
|
||||
<Help>10% to 50%</Help>
|
||||
</Value>
|
||||
<Value genre="config" index="48" instance="1" label="Sensor report" max="55" min="0" size="1" type="byte" value="55">
|
||||
<Help>Enable/disable the sensor report:
|
||||
Bit 7 - Bit 6 - Bit 5 Notification Report for Overheat alarm.
|
||||
Bit 4 Notification Report for Under heat alarm.
|
||||
Bit 3 - Bit 2 Configuration Report for Tilt sensor.
|
||||
|
@ -50,26 +53,26 @@ http://products.z-wavealliance.org/products/2437
|
|||
Bit 0 Notification Report for Water Leak event.
|
||||
Note: if the value = 1+2+4+16+32=55, which means if any sensor will report alarm.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="49" label="Upper limit value" size="4" min="65536" max="2147483647" value="26214400">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="49" instance="1" label="Upper limit value" max="2147483647" min="65536" size="4" type="int" value="26214400">
|
||||
<Help>
|
||||
Set the upper limit value (overheat).
|
||||
0 Celsius unit
|
||||
1 Fahrenheit unit
|
||||
65536 to 2147483647 Temperature value.
|
||||
Default: 0x01900000 => 40.0C
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="50" label="Lower limit value" size="4" min="65536" max="2147483647" value="0">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="50" instance="1" label="Lower limit value" max="2147483647" min="65536" size="4" type="int" value="0">
|
||||
<Help>
|
||||
Set the lower limit value (under heat).
|
||||
0 Celsius unit
|
||||
1 Fahrenheit unit
|
||||
65536 to 2147483647 Temperature value
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="short" genre="config" instance="1" index="57" label="Recover limit value of temperature sensor" min="100" max="4080" value="5120" size="2">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="57" instance="1" label="Recover limit value of temperature sensor" max="4080" min="100" size="2" type="short" value="5120">
|
||||
<Help>
|
||||
Set the recover limit value of temperature sensor.
|
||||
Note:
|
||||
1. When the current measurement less than or equal (Upper limit - Recover limit), the upper limit report is enabled and then it would send out a sensor report when the next measurement is more than the upper limit.
|
||||
|
@ -80,82 +83,94 @@ http://products.z-wavealliance.org/products/2437
|
|||
4. Recover limit range: 1.0 to 25.5 C/F (0x0100 to 0xFF00 or 0x0101 to 0xFF01).
|
||||
E.g. The default recover limit value is 2.0 C/F (0x1400/0x1401), when the measurement is less than (Upper limit - 2), the upper limit report would be enabled one time or when the measurement is more than (Lower limit + 2), the lower limit report would be enabled one time.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="64" label="Unit of the automatic temperature report" min="0" max="1" size="1" value="0">
|
||||
<Help>Set the default unit of the automatic temperature report in parameter 101-103</Help>
|
||||
<Item label="Celsius" value="0"/>
|
||||
<Item label="Fahrenheit" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="84" label="Get the state of tilt sensor" min="0" max="1" size="1" value="0" read_only="true">
|
||||
<Help>Get the state of tilt sensor</Help>
|
||||
<Item label="Horizontal" value="0"/>
|
||||
<Item label="Vertical" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="86" label="Buzzer" min="0" max="1" size="1" value="1">
|
||||
<Help>Enable/ disable the buzzer.</Help>
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Enabled" value="1"/>
|
||||
</Value>
|
||||
<Value type="byte" genre="config" instance="1" index="87" label="Sensor is triggered the buzzer will alarm" size="1" min="0" max="55" value="55">
|
||||
<Help>
|
||||
To set which sensor is triggered the buzzer will alarm.
|
||||
1 If the Water leak is triggered, the buzzer will alarm.
|
||||
2 If the vibration is triggered, the buzzer will alarm.
|
||||
4 If the tilt sensor is triggered, the buzzer will alarm.
|
||||
16 If the under heat is triggered, the buzzer will alarm.
|
||||
32 If the overheat is triggered, the buzzer will alarm.
|
||||
Note: if the value = 1+2+4+16+32=55, which means if any sensor is triggered, the buzzer will alarm.
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="88" label="Probe 1 Basic Set on grp 3" min="0" max="2" size="1" value="0">
|
||||
<Help>To set which value of the Basic Set will be sent to the associated nodes in association Group 3 when the Sensor probe 1 is triggered.</Help>
|
||||
<Item label="Send nothing" value="0"/>
|
||||
<Item label="Presence/absence of water 0xFF/0x00" value="1"/>
|
||||
<Item label="Presence/absence of water 0x00/0xFF" value="2"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="89" label="Probe 2 Basic Set on grp 4" min="0" max="2" size="1" value="0">
|
||||
<Help>To set which value of the Basic Set will be sent to the associated nodes in association Group 4 when the Sensor probe 2 is triggered.</Help>
|
||||
<Item label="Send nothing" value="0"/>
|
||||
<Item label="Presence/absence of water 0xFF/0x00" value="1"/>
|
||||
<Item label="Presence/absence of water 0x00/0xFF" value="2"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="94" label="Battery report selection" min="0" max="1" size="1" value="0">
|
||||
<Help>To set which power source level is reported via the Battery CC.</Help>
|
||||
<Item label="USB power level" value="0"/>
|
||||
<Item label="CR123A battery level" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="101" label="Unsolicited report" size="1" min="0" max="3" value="3">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="64" instance="1" label="Unit of the automatic temperature report" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Set the default unit of the automatic temperature report in parameter 101-103</Help>
|
||||
<Item label="Celsius" value="0"/>
|
||||
<Item label="Fahrenheit" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="84" instance="1" label="Get the state of tilt sensor" max="1" min="0" read_only="true" size="1" type="list" value="0">
|
||||
<Help>Get the state of tilt sensor</Help>
|
||||
<Item label="Horizontal" value="0"/>
|
||||
<Item label="Vertical" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="86" instance="1" label="Buzzer" max="1" min="0" size="1" type="list" value="1">
|
||||
<Help>Enable/ disable the buzzer.</Help>
|
||||
<Item label="Disabled" value="0"/>
|
||||
<Item label="Enabled" value="1"/>
|
||||
</Value>
|
||||
<Value bitmask="55" genre="config" index="87" instance="1" label="Sensor is triggered the buzzer will alarm" max="55" min="0" size="4" type="bitset" value="55">
|
||||
<Help>What Sensors Trigger the Buzzer</Help>
|
||||
<BitSet id="1">
|
||||
<Label>Water Leak</Label>
|
||||
<Help>If the Water leak is triggered, the buzzer will alarm.</Help>
|
||||
</BitSet>
|
||||
<BitSet id="2">
|
||||
<Label>Vibration</Label>
|
||||
<Help>If the vibration is triggered, the buzzer will alarm.</Help>
|
||||
</BitSet>
|
||||
<BitSet id="3">
|
||||
<Label>Tilt Sensor</Label>
|
||||
<Help>If the Tilt Sensor is triggered, the buzzer will alarm.</Help>
|
||||
</BitSet>
|
||||
<BitSet id="5">
|
||||
<Label>UnderHeat</Label>
|
||||
<Help>If the Under Heat Temperature is triggered, the buzzer will alarm.</Help>
|
||||
</BitSet>
|
||||
<BitSet id="6">
|
||||
<Label>OverHeat</Label>
|
||||
<Help>If the Over Heat Temperature is triggered, the buzzer will alarm.</Help>
|
||||
</BitSet>
|
||||
</Value>
|
||||
<Value genre="config" index="88" instance="1" label="Probe 1 Basic Set on grp 3" max="2" min="0" size="1" type="list" value="0">
|
||||
<Help>To set which value of the Basic Set will be sent to the associated nodes in association Group 3 when the Sensor probe 1 is triggered.</Help>
|
||||
<Item label="Send nothing" value="0"/>
|
||||
<Item label="Presence/absence of water 0xFF/0x00" value="1"/>
|
||||
<Item label="Presence/absence of water 0x00/0xFF" value="2"/>
|
||||
</Value>
|
||||
<Value genre="config" index="89" instance="1" label="Probe 2 Basic Set on grp 4" max="2" min="0" size="1" type="list" value="0">
|
||||
<Help>To set which value of the Basic Set will be sent to the associated nodes in association Group 4 when the Sensor probe 2 is triggered.</Help>
|
||||
<Item label="Send nothing" value="0"/>
|
||||
<Item label="Presence/absence of water 0xFF/0x00" value="1"/>
|
||||
<Item label="Presence/absence of water 0x00/0xFF" value="2"/>
|
||||
</Value>
|
||||
<Value genre="config" index="94" instance="1" label="Battery report selection" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>To set which power source level is reported via the Battery CC.</Help>
|
||||
<Item label="USB power level" value="0"/>
|
||||
<Item label="CR123A battery level" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="101" instance="1" label="Unsolicited report" max="3" min="0" size="1" type="list" value="3">
|
||||
<Help>
|
||||
To set what unsolicited report would be sent to the Lifeline group.
|
||||
</Help>
|
||||
<Item label="Send Nothing" value="0"/>
|
||||
<Item label="Battery Report" value="1"/>
|
||||
<Item label="Multilevel sensor report for temperature" value="2"/>
|
||||
<Item label="Battery Report and Multilevel sensor report for temperature" value="3"/>
|
||||
</Value>
|
||||
<Value type="int" genre="config" instance="1" index="111" label="Unsolicited report interval time" size="4" min="5" max="2678400" units="seconds" value="3600">
|
||||
<Help>
|
||||
<Item label="Send Nothing" value="0"/>
|
||||
<Item label="Battery Report" value="1"/>
|
||||
<Item label="Multilevel sensor report for temperature" value="2"/>
|
||||
<Item label="Battery Report and Multilevel sensor report for temperature" value="3"/>
|
||||
</Value>
|
||||
<Value genre="config" index="111" instance="1" label="Unsolicited report interval time" max="2678400" min="5" size="4" type="int" units="seconds" value="3600">
|
||||
<Help>
|
||||
To set the interval time of sending reports in Report group 1
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="135" label="Water leak event report selection" min="0" max="3" size="1" value="1">
|
||||
<Help>To set which sensor report can be sent when the water leak event is triggered and if the receiving device is a non-multichannel device.</Help>
|
||||
<Item label="Send nothing" value="0"/>
|
||||
<Item label="Send notification report to association group 1" value="1"/>
|
||||
<Item label="Send configuration 0x88 report to association group 2" value="2"/>
|
||||
<Item label="Send notification report to association group 1 and Send configuration 0x88 report to association group 2" value="3"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="136" label="Report Type to Send" size="1" min="0" max="2" value="0" read_only="true">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="135" instance="1" label="Water leak event report selection" max="3" min="0" size="1" type="list" value="1">
|
||||
<Help>To set which sensor report can be sent when the water leak event is triggered and if the receiving device is a non-multichannel device.</Help>
|
||||
<Item label="Send nothing" value="0"/>
|
||||
<Item label="Send notification report to association group 1" value="1"/>
|
||||
<Item label="Send configuration 0x88 report to association group 2" value="2"/>
|
||||
<Item label="Send notification report to association group 1 and Send configuration 0x88 report to association group 2" value="3"/>
|
||||
</Value>
|
||||
<Value genre="config" index="136" instance="1" label="Report Type to Send" max="2" min="0" read_only="true" size="1" type="list" value="0">
|
||||
<Help>
|
||||
When the parameter 0x87 is set to 2 or 3, it can get the sensor probes status through this configuration value.
|
||||
</Help>
|
||||
<Item label="Absence of water is triggered by probe 1 and 2" value="0"/>
|
||||
<Item label="Presence of water is triggered by probe 1" value="1"/>
|
||||
<Item label="Presence of water is triggered by probe 2" value="2"/>
|
||||
<Item label="Presence of water is triggered by probe 1 and 2" value="3"/>
|
||||
</Value>
|
||||
<Value type="short" genre="config" instance="1" index="201" label="Temperature sensor calibration" size="2" value="0">
|
||||
<Help>
|
||||
<Item label="Absence of water is triggered by probe 1 and 2" value="0"/>
|
||||
<Item label="Presence of water is triggered by probe 1" value="1"/>
|
||||
<Item label="Presence of water is triggered by probe 2" value="2"/>
|
||||
<Item label="Presence of water is triggered by probe 1 and 2" value="3"/>
|
||||
</Value>
|
||||
<Value genre="config" index="201" instance="1" label="Temperature sensor calibration" size="2" type="short" value="0">
|
||||
<Help>
|
||||
Temperature calibration (the available value range is [-128, 127] or [-12.8C, 12.7C]).
|
||||
Note:
|
||||
1. High byte is the calibration value. Low byte is the unit (0x00=Celsius, 0x01=Fahrenheit).
|
||||
|
@ -165,31 +180,37 @@ http://products.z-wavealliance.org/products/2437
|
|||
E.g. If measure value =25.3C and the standard value = 23.2C, so the calibration value= 23.2C - 25.3C= -2.1C (0xEB).
|
||||
If the measure value =30.1C and the standard value = 33.2C, so the calibration value= 33.2C - 30.1C=3.1C (0x1F).
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="list" genre="config" index="252" label="Lock/Unlock Configuration" min="0" max="1" size="1" value="0">
|
||||
<Help>Lock/ unlock all configuration parameters</Help>
|
||||
<Item label="Unlock" value="0"/>
|
||||
<Item label="Lock" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" index="255" genre="config" label="Reset To Factory Defaults" size="4" value="1" write_only="true">
|
||||
<Help>Reset to factory defaults</Help>
|
||||
<Item label="Normal" value="0"/>
|
||||
<Item label="Reset to factory default setting" value="1"/>
|
||||
<Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
|
||||
<!-- Map endpoints to instances -->
|
||||
<CommandClass id="96" mapping="endpoints"/>
|
||||
<CommandClass id="142" ForceInstances="true"/>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="4">
|
||||
<Group index="1" max_associations="5" label="Lifeline"/>
|
||||
<Group index="2" max_associations="5" label="Send the configuration parameter 0x88"/>
|
||||
<Group index="3" max_associations="5" label="Send Basic Set when the Sensor probe 1 is triggered"/>
|
||||
<Group index="4" max_associations="5" label="Send Basic Set when the Sensor probe 2 is triggered"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
|
||||
</Value>
|
||||
<Value genre="config" index="252" label="Lock/Unlock Configuration" max="1" min="0" size="1" type="list" value="0">
|
||||
<Help>Lock/ unlock all configuration parameters</Help>
|
||||
<Item label="Unlock" value="0"/>
|
||||
<Item label="Lock" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="255" label="Reset To Factory Defaults" size="4" type="list" value="1" write_only="true">
|
||||
<Help>Reset to factory defaults</Help>
|
||||
<Item label="Normal" value="0"/>
|
||||
<Item label="Reset to factory default setting" value="1"/>
|
||||
<Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Map endpoints to instances -->
|
||||
<CommandClass id="96">
|
||||
<Compatibility>
|
||||
<MapRootToEndpoint>true</MapRootToEndpoint>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<CommandClass id="142">
|
||||
<Compatibility>
|
||||
<ForceInstances>true</ForceInstances>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="4">
|
||||
<Group index="1" label="Lifeline" max_associations="5"/>
|
||||
<Group index="2" label="Send the configuration parameter 0x88" max_associations="5"/>
|
||||
<Group index="3" label="Send Basic Set when the Sensor probe 1 is triggered" max_associations="5"/>
|
||||
<Group index="4" label="Send Basic Set when the Sensor probe 2 is triggered" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
|
@ -1,76 +1,88 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Aeotec ZW129 WallMote Duo, base on Engineering Spec 9/27/2016
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- COMMAND_CLASS_BASIC -->
|
||||
<CommandClass id="32" getsupported="false"/>
|
||||
<!-- COMMAND_CLASS_SWITCH_BINARY -->
|
||||
<CommandClass id="37" getsupported="false"/>
|
||||
<!-- COMMAND_CLASS_SWITCH_MULTILEVEL -->
|
||||
<CommandClass id="38" getsupported="false"/>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" genre="config" instance="1" index="1" label="Touch sound" min="0" max="1" value="1" size="1">
|
||||
<Help>This will enable or disable the sound effects when you press or touch the sensing area</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="2" label="Touch vibration" min="0" max="1" value="1" size="1">
|
||||
<Help>This will enable or disable the vibration effects when you press or touch the sensing area</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="3" label="Button slide function" min="0" max="1" value="1" size="1">
|
||||
<Help>This will enable or disable control by sliding the button area</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="4" label="Report type" min="0" max="1" value="1" size="1">
|
||||
<Help>To configure which report will be sent when pressing the buttons</Help>
|
||||
<Item label="Send nothing" value="0"/>
|
||||
<Item label="Send Central Scene Command Notification" value="1"/>
|
||||
<Item label="Send Central Scene Command Notification and Configuration report" value="3"/>
|
||||
</Value>
|
||||
<Value type="int" index="5" genre="config" label="Color when button is pressed" units="" value="65280" >
|
||||
<Help>
|
||||
<Product Revision="2" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<!-- COMMAND_CLASS_BASIC -->
|
||||
<CommandClass id="32">
|
||||
<Compatibility>
|
||||
<GetSupported>false</GetSupported>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- COMMAND_CLASS_SWITCH_BINARY -->
|
||||
<CommandClass id="37">
|
||||
<Compatibility>
|
||||
<GetSupported>false</GetSupported>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- COMMAND_CLASS_SWITCH_MULTILEVEL -->
|
||||
<CommandClass id="38">
|
||||
<Compatibility>
|
||||
<GetSupported>false</GetSupported>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="1" instance="1" label="Touch sound" max="1" min="0" size="1" type="list" value="1">
|
||||
<Help>This will enable or disable the sound effects when you press or touch the sensing area</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="2" instance="1" label="Touch vibration" max="1" min="0" size="1" type="list" value="1">
|
||||
<Help>This will enable or disable the vibration effects when you press or touch the sensing area</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="3" instance="1" label="Button slide function" max="1" min="0" size="1" type="list" value="1">
|
||||
<Help>This will enable or disable control by sliding the button area</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="4" instance="1" label="Report type" max="1" min="0" size="1" type="list" value="1">
|
||||
<Help>To configure which report will be sent when pressing the buttons</Help>
|
||||
<Item label="Send nothing" value="0"/>
|
||||
<Item label="Send Central Scene Command Notification" value="1"/>
|
||||
<Item label="Send Central Scene Command Notification and Configuration report" value="3"/>
|
||||
</Value>
|
||||
<Value genre="config" index="5" label="Color when button is pressed" type="int" units="" value="65280">
|
||||
<Help>
|
||||
To configure which color will be displayed when the button is pressed.
|
||||
Value 1: (msb) Red.
|
||||
Value 2: Green.
|
||||
Value 3: Blue.
|
||||
Value 4: Reserved
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="33" genre="config" label="Test the LED, buzzer and vibrator" units="" value="0" read_only="true">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="33" label="Test the LED, buzzer and vibrator" read_only="true" type="int" units="" value="0">
|
||||
<Help>
|
||||
Get the LED Strip color value
|
||||
Value 1: (msb) Red.
|
||||
Value 2: Green.
|
||||
Value 3: Blue.
|
||||
Value 4: buzzer and vibrator. (1=ON, 0=OFF)
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="39" genre="config" label="Set the low battery value" units="%" min="10" max="50" value="20">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="39" label="Set the low battery value" max="50" min="10" type="byte" units="%" value="20">
|
||||
<Help>
|
||||
Set the low battery value.
|
||||
Range: 10% - 50%.</Help>
|
||||
</Value>
|
||||
<Value type="list" index="255" genre="config" label="Reset To Factory Defaults" size="4" value="1" write_only="true">
|
||||
<Help>Reset to factory defaults</Help>
|
||||
<Item label="Reset to factory default setting" value="0"/>
|
||||
<Item label="Normal" value="1"/>
|
||||
<Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="5">
|
||||
<Group index="1" max_associations="1" label="Lifeline"/>
|
||||
<Group index="2" max_associations="5" label="On/Off control via Button 1"/>
|
||||
<Group index="3" max_associations="5" label="Dimmer control via Button 1"/>
|
||||
<Group index="4" max_associations="5" label="On/Off control via Button 2"/>
|
||||
<Group index="5" max_associations="5" label="Dimmer control via Button 2"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Value>
|
||||
<Value genre="config" index="255" label="Reset To Factory Defaults" size="4" type="list" value="1" write_only="true">
|
||||
<Help>Reset to factory defaults</Help>
|
||||
<Item label="Reset to factory default setting" value="0"/>
|
||||
<Item label="Normal" value="1"/>
|
||||
<Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="5">
|
||||
<Group index="1" label="Lifeline" max_associations="1"/>
|
||||
<Group index="2" label="On/Off control via Button 1" max_associations="5"/>
|
||||
<Group index="3" label="Dimmer control via Button 1" max_associations="5"/>
|
||||
<Group index="4" label="On/Off control via Button 2" max_associations="5"/>
|
||||
<Group index="5" label="Dimmer control via Button 2" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
|
||||
<!--<CommandClass id="142" ForceInstances="true"/>-->
|
||||
</Product>
|
||||
|
|
|
@ -1,80 +1,92 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Aeotec ZW130 WallMote Quad, base on Engineering Spec 9/27/2016
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<!-- COMMAND_CLASS_BASIC -->
|
||||
<CommandClass id="32" getsupported="false"/>
|
||||
<!-- COMMAND_CLASS_SWITCH_BINARY -->
|
||||
<CommandClass id="37" getsupported="false"/>
|
||||
<!-- COMMAND_CLASS_SWITCH_MULTILEVEL -->
|
||||
<CommandClass id="38" getsupported="false"/>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" genre="config" instance="1" index="1" label="Touch sound" min="0" max="1" value="1" size="1">
|
||||
<Help>This will enable or disable the sound effects when you press or touch the sensing area</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="2" label="Touch vibration" min="0" max="1" value="1" size="1">
|
||||
<Help>This will enable or disable the vibration effects when you press or touch the sensing area</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="3" label="Button slide function" min="0" max="1" value="1" size="1">
|
||||
<Help>This will enable or disable control by sliding the button area</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value type="list" genre="config" instance="1" index="4" label="Report type" min="0" max="1" value="1" size="1">
|
||||
<Help>To configure which report will be sent when pressing the buttons</Help>
|
||||
<Item label="Send nothing" value="0"/>
|
||||
<Item label="Send Central Scene Command Notification" value="1"/>
|
||||
<Item label="Send Central Scene Command Notification and Configuration report" value="3"/>
|
||||
</Value>
|
||||
<Value type="int" index="5" genre="config" label="Color when button is pressed" units="" value="65280" >
|
||||
<Help>
|
||||
<Product Revision="4" xmlns="https://github.com/OpenZWave/open-zwave">
|
||||
<!-- COMMAND_CLASS_BASIC -->
|
||||
<CommandClass id="32">
|
||||
<Compatibility>
|
||||
<GetSupported>false</GetSupported>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- COMMAND_CLASS_SWITCH_BINARY -->
|
||||
<CommandClass id="37">
|
||||
<Compatibility>
|
||||
<GetSupported>false</GetSupported>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- COMMAND_CLASS_SWITCH_MULTILEVEL -->
|
||||
<CommandClass id="38">
|
||||
<Compatibility>
|
||||
<GetSupported>false</GetSupported>
|
||||
</Compatibility>
|
||||
</CommandClass>
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value genre="config" index="1" instance="1" label="Touch sound" max="1" min="0" size="1" type="list" value="1">
|
||||
<Help>This will enable or disable the sound effects when you press or touch the sensing area</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="2" instance="1" label="Touch vibration" max="1" min="0" size="1" type="list" value="1">
|
||||
<Help>This will enable or disable the vibration effects when you press or touch the sensing area</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="3" instance="1" label="Button slide function" max="1" min="0" size="1" type="list" value="1">
|
||||
<Help>This will enable or disable control by sliding the button area</Help>
|
||||
<Item label="Disable" value="0"/>
|
||||
<Item label="Enable" value="1"/>
|
||||
</Value>
|
||||
<Value genre="config" index="4" instance="1" label="Report type" max="1" min="0" size="1" type="list" value="1">
|
||||
<Help>To configure which report will be sent when pressing the buttons</Help>
|
||||
<Item label="Send nothing" value="0"/>
|
||||
<Item label="Send Central Scene Command Notification" value="1"/>
|
||||
<Item label="Send Central Scene Command Notification and Configuration report" value="3"/>
|
||||
</Value>
|
||||
<Value genre="config" index="5" label="Color when button is pressed" type="int" units="" value="65280">
|
||||
<Help>
|
||||
To configure which color will be displayed when the button is pressed.
|
||||
Value 1: (msb) Red.
|
||||
Value 2: Green.
|
||||
Value 3: Blue.
|
||||
Value 4: Reserved
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="int" index="33" genre="config" label="Test the LED, buzzer and vibrator" units="" value="0" read_only="true">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="33" label="Test the LED, buzzer and vibrator" read_only="true" type="int" units="" value="0">
|
||||
<Help>
|
||||
Get the LED Strip color value
|
||||
Value 1: (msb) Red.
|
||||
Value 2: Green.
|
||||
Value 3: Blue.
|
||||
Value 4: buzzer and vibrator. (1=ON, 0=OFF)
|
||||
</Help>
|
||||
</Value>
|
||||
<Value type="byte" index="39" genre="config" label="Set the low battery value" units="%" min="10" max="50" value="20">
|
||||
<Help>
|
||||
</Value>
|
||||
<Value genre="config" index="39" label="Set the low battery value" max="50" min="10" type="byte" units="%" value="20">
|
||||
<Help>
|
||||
Set the low battery value.
|
||||
Range: 10% - 50%.</Help>
|
||||
</Value>
|
||||
<Value type="list" index="255" genre="config" label="Reset To Factory Defaults" size="4" value="1" write_only="true">
|
||||
<Help>Reset to factory defaults</Help>
|
||||
<Item label="Reset to factory default setting" value="0"/>
|
||||
<Item label="Normal" value="1"/>
|
||||
<Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="9">
|
||||
<Group index="1" max_associations="1" label="Lifeline"/>
|
||||
<Group index="2" max_associations="5" label="On/Off control via Button 1"/>
|
||||
<Group index="3" max_associations="5" label="Dimmer control via Button 1"/>
|
||||
<Group index="4" max_associations="5" label="On/Off control via Button 2"/>
|
||||
<Group index="5" max_associations="5" label="Dimmer control via Button 2"/>
|
||||
<Group index="6" max_associations="5" label="On/Off control via Button 3"/>
|
||||
<Group index="7" max_associations="5" label="Dimmer control via Button 3"/>
|
||||
<Group index="8" max_associations="5" label="On/Off control via Button 4"/>
|
||||
<Group index="9" max_associations="5" label="Dimmer control via Button 4"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
</Value>
|
||||
<Value genre="config" index="255" label="Reset To Factory Defaults" size="4" type="list" value="1" write_only="true">
|
||||
<Help>Reset to factory defaults</Help>
|
||||
<Item label="Reset to factory default setting" value="0"/>
|
||||
<Item label="Normal" value="1"/>
|
||||
<Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="9">
|
||||
<Group index="1" label="Lifeline" max_associations="1"/>
|
||||
<Group index="2" label="On/Off control via Button 1" max_associations="5"/>
|
||||
<Group index="3" label="Dimmer control via Button 1" max_associations="5"/>
|
||||
<Group index="4" label="On/Off control via Button 2" max_associations="5"/>
|
||||
<Group index="5" label="Dimmer control via Button 2" max_associations="5"/>
|
||||
<Group index="6" label="On/Off control via Button 3" max_associations="5"/>
|
||||
<Group index="7" label="Dimmer control via Button 3" max_associations="5"/>
|
||||
<Group index="8" label="On/Off control via Button 4" max_associations="5"/>
|
||||
<Group index="9" label="Dimmer control via Button 4" max_associations="5"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
|
||||
<!--<CommandClass id="142" ForceInstances="true"/>-->
|
||||
</Product>
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
Aeotec ZW132 Dual Nano Switch, base on Engineering Spec 03/19/2018 V2.0
|
||||
Product Type ID: EU=0x00, US=0x01, AU=0x02 CN=0x1D
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="2">
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="3" genre="config" label="Over current protection" units="" min="0" max="1" size="1" value="1">
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
Aeotec ZW139 Nano Switch, base on Engineering Spec 03/19/2018 V2.0
|
||||
Product Type ID: EU=0x00, US=0x01, AU=0x02 CN=0x1D
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="2">
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="4" genre="config" label="Over heat protection" units="" min="0" max="1" size="1" value="0">
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
Aeotec ZW140 Dual Nano Switch, base on Engineering Spec 03/19/2018 V2.0
|
||||
Product Type ID: EU=0x00, US=0x01, AU=0x02 CN=0x1D
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="2">
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="4" genre="config" label="Over heat protection" units="" min="0" max="1" size="1" value="0">
|
||||
|
|
|
@ -4,7 +4,7 @@ Aeotec ZW141 Nano Shutter, base on Engineering Spec 1/4/2018
|
|||
Product Type ID: EU=0x00, US=0x01, AU=0x02 CN=0x1D
|
||||
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="1">
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="byte" index="35" genre="config" label="Set the moving time" min="1" max="127" units="seconds" value="30">
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<!--
|
||||
ZW162 Doorbell 6
|
||||
-->
|
||||
<Product xmlns="http://code.google.com/p/open-zwave/">
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="2">
|
||||
<!--
|
||||
Aeotec Doorbell 6
|
||||
https://aeotec.freshdesk.com/helpdesk/attachments/6073850754
|
||||
|
@ -179,6 +179,19 @@ ZW162 Doorbell 6
|
|||
<Item label="Reset to factory default setting and removed from the z-wave network" value="1431655765"/>
|
||||
</Value>
|
||||
</CommandClass>
|
||||
|
||||
<CommandClass id="96">
|
||||
<Instance index="1" label="Browse" />
|
||||
<Instance index="2" label="Tampering" />
|
||||
<Instance index="3" label="Doorbell 1" />
|
||||
<Instance index="4" label="Doorbell 2" />
|
||||
<Instance index="5" label="Doorbell 3" />
|
||||
<Instance index="6" label="Enviroment" />
|
||||
<Instance index="7" label="Security" />
|
||||
<Instance index="8" label="Emergency" />
|
||||
<Instance index="9" label="Misc" />
|
||||
</CommandClass>
|
||||
|
||||
<!-- Association Groups -->
|
||||
<CommandClass id="133">
|
||||
<Associations num_groups="9">
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<!--
|
||||
ZWA001 LED Bulb 6 Multi-White
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="1">
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="80" genre="config" label="Notification" min="0" max="1" value="1" size="1">
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
ZWA002 LED Bulb 6 Multi-Color
|
||||
https://products.z-wavealliance.org/products/2881
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="1">
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="list" index="1" genre="config" label="User custom mode LED animations" min="0" max="2" value="0" size="1">
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
<!--
|
||||
ZWA003 NanoMote Quad
|
||||
-->
|
||||
<Product xmlns='http://code.google.com/p/open-zwave/'>
|
||||
<Product xmlns='https://github.com/OpenZWave/open-zwave' Revision="2">
|
||||
<!-- Configuration Parameters -->
|
||||
<CommandClass id="112">
|
||||
<Value type="byte" index="32" genre="config" label="Low battery level" units="%" min="10" max="50" value="20">
|
||||
|
@ -37,13 +37,4 @@ ZWA003 NanoMote Quad
|
|||
<Group index="9" max_associations="5" label="Dimmer control via Button 4"/>
|
||||
</Associations>
|
||||
</CommandClass>
|
||||
<!-- Central Scene Reports -->
|
||||
<CommandClass id="91">
|
||||
<Instance index="1" />
|
||||
<Value type="int" genre="system" instance="1" index="0" label="Scene Count" units="" read_only="true" write_only="false" verify_changes="false" min="-2147483648" max="2147483647" value="0" />
|
||||
<Value type="int" genre="user" instance="1" index="1" label="Button One" units="" read_only="true" write_only="false" verify_changes="false" min="-2147483648" max="2147483647" value="0" />
|
||||
<Value type="int" genre="user" instance="1" index="2" label="Button Two" units="" read_only="true" write_only="false" verify_changes="false" min="-2147483648" max="2147483647" value="0" />
|
||||
<Value type="int" genre="user" instance="1" index="3" label="Button Three" units="" read_only="true" write_only="false" verify_changes="false" min="-2147483648" max="2147483647" value="0" />
|
||||
<Value type="int" genre="user" instance="1" index="4" label="Button Four" units="" read_only="true" write_only="false" verify_changes="false" min="-2147483648" max="2147483647" value="0" />
|
||||
</CommandClass>
|
||||
</Product>
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Reference in a new issue