@zwave-js/config 8.3.0 → 8.3.2-20210918
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -138,5 +138,11 @@
|
|
|
138
138
|
}
|
|
139
139
|
]
|
|
140
140
|
}
|
|
141
|
+
},
|
|
142
|
+
"compat": {
|
|
143
|
+
// The device shouldn't have any endpoints
|
|
144
|
+
"preserveRootApplicationCCValueIDs": true
|
|
145
|
+
// TODO: Remove endpoints when compat flag is implemented
|
|
146
|
+
// https://github.com/zwave-js/node-zwave-js/issues/3335
|
|
141
147
|
}
|
|
142
148
|
}
|
|
@@ -59,6 +59,38 @@
|
|
|
59
59
|
}
|
|
60
60
|
]
|
|
61
61
|
},
|
|
62
|
+
"33": {
|
|
63
|
+
"$if": "firmwareVersion >= 2.4",
|
|
64
|
+
"label": "Auto-On Timer",
|
|
65
|
+
"valueSize": 1,
|
|
66
|
+
"unit": "minutes",
|
|
67
|
+
"minValue": 0,
|
|
68
|
+
"maxValue": 99,
|
|
69
|
+
"defaultValue": 0,
|
|
70
|
+
"unsigned": true,
|
|
71
|
+
"options": [
|
|
72
|
+
{
|
|
73
|
+
"label": "Disable",
|
|
74
|
+
"value": 0
|
|
75
|
+
}
|
|
76
|
+
]
|
|
77
|
+
},
|
|
78
|
+
"34": {
|
|
79
|
+
"$if": "firmwareVersion >= 2.4",
|
|
80
|
+
"label": "Auto-Off Timer",
|
|
81
|
+
"valueSize": 1,
|
|
82
|
+
"unit": "minutes",
|
|
83
|
+
"minValue": 0,
|
|
84
|
+
"maxValue": 99,
|
|
85
|
+
"defaultValue": 0,
|
|
86
|
+
"unsigned": true,
|
|
87
|
+
"options": [
|
|
88
|
+
{
|
|
89
|
+
"label": "Disable",
|
|
90
|
+
"value": 0
|
|
91
|
+
}
|
|
92
|
+
]
|
|
93
|
+
},
|
|
62
94
|
"30": {
|
|
63
95
|
"$if": "firmwareVersion >= 1.3",
|
|
64
96
|
"$import": "~/templates/master_template.json#base_enable_disable",
|