Alright, I think Iâm making headway. Just to make sure I understand the process correctly:
Setting the virtual device action to âDevice Parameter Scanâ allows me to list the currently set values for all the available parameters for the main device. Switching the action to âDevice Parameter Configureâ, I can then change those parameters by manually entern the corresponding value.
For example, in my particular case, the Technisat series switch returns these values:
Do I understand the reading correctly and the switch only provides 4 different settings (parameter 1 through 4)?
But is there a way to find out, what each parameter does exactly? Looking at the code for the old DTH, my guess would be that the refer to the âparamZwaveNumâ entries.
But without having such a documentation, what would one do to find out the purpose for the parameters? Just trial and error?
[
[
title: "Wattage meter report interval",
descr: "Interval of current wattage meter reports in 10 seconds. 3 ... 8640 (30 seconds - 1 day)",
key: "wattageMeterReportInterval",
paramName: "Set Value (3..8640)",
type: "number",
range: "3..8640",
enableSwitch: true,
enableSwitchDefaultValue: true,
enableKey: "wattageMeterReportDisable",
paramZwaveNum: 2,
paramZwaveSize: 1
],
[
title: "Energy meter report interval",
descr: "Interval of active energy meter reports in minutes. 10 ... 30240 (10 minutes - 3 weeks)",
key: "energyMeterReportInterval",
enableSwitch: true,
enableSwitchDefaultValue: true,
enableKey: "energyMeterReportDisable",
paramName: "Set Value (10..30240)",
type: "number",
range: "10..30240",
paramZwaveNum: 3,
paramZwaveSize: 2
],
[
title: "Operation mode of buttons T1 - T4",
descr: "Operation mode of buttons T1 - T4",
key: "buttonModeSetting",
paramName: "Select",
type: "enum",
values: [
0: "0 - top buttons turn outputs on, bottom buttons turn outputs off",
1: "1 - buttons toggle the outputs on/off"
],
paramZwaveNum: 4,
paramZwaveSize: 1
]
]
}