Code: Select all
cat domoticzfolder/Config/zwcfg_ZWAVEHOMEID.xml | grep 'max_baud_rate'
<Node id="30" name="Main Bedroom Wa" location="" basic="4" generic="15" specific="1" roletype="5" devicetype="6912" nodetype="0" type="Basic Repeater Slave" listening="true" frequentListening="false" beaming="true" routing="true" max_baud_rate="40000" version="4" query_stage="Complete">
max_baud_rate="40000" = 40kbps
There are 3 speeds Z-Wave devices can operate at (depending on hardware):
1) 9.6 kbps
2) 40kbps
3) 100kbps (Z-Wave Plus)
I think we should have the speeds visible in the Domoticz GUI, it would help users identify older devices or devices not operating at their peak performance that might be a bottleneck / slowing down their systems.
Also could we highlight security enabled devices in a difference color, dark blue (on the openzwave hardware page)?
Mostly for my own reference, this command displays z-wave device names that have been included as secure devices:
Code: Select all
cat domoticzfolder/Config/zwcfg_ZWAVEHOMEID.xml | grep 'secured' | grep -o -P '(?<=name=).*(?=location)'
Code: Select all
cat domoticzfolder/Config/zwcfg_ZWAVEHOMEID.xml | grep 'beaming="true"' | grep -o -P '(?<=name=).*(?=location)'