@zwave-js/config 10.22.3 → 10.23.0

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.
@@ -2,7 +2,7 @@
2
2
  "manufacturer": "Reitz-Group.de",
3
3
  "manufacturerId": "0x0064",
4
4
  "label": "ZW ESJ 300",
5
- "description": "Duwi ZW ESJ 300 Blind Control",
5
+ "description": "Duwi Blind Control",
6
6
  "devices": [
7
7
  {
8
8
  "productType": "0x4001",
@@ -15,29 +15,94 @@
15
15
  },
16
16
  "paramInformation": [
17
17
  {
18
- "#": "0",
19
- "label": "Running time",
20
- "description": "Adjustment of the operating times of the sun blind control",
21
- "valueSize": 1,
18
+ "#": "0[0x8000]",
19
+ "label": "Runtime Up: Mode",
20
+ "valueSize": 2,
21
+ "defaultValue": 1,
22
+ "allowManualEntry": false,
23
+ "options": [
24
+ {
25
+ "label": "Short (0-127s)",
26
+ "value": 0
27
+ },
28
+ {
29
+ "label": "Long (130s-23m)",
30
+ "value": 1
31
+ }
32
+ ]
33
+ },
34
+ {
35
+ "#": "0[0x7f00]",
36
+ "label": "Runtime Up: Duration",
37
+ "description": "In Long mode, the runtime will be 130s + 10 * value.",
38
+ "valueSize": 2,
22
39
  "minValue": 0,
23
- "maxValue": 255,
24
- "defaultValue": 0,
25
- "unsigned": true
40
+ "maxValue": 127,
41
+ "defaultValue": 127,
42
+ "unsigned": true,
43
+ "options": [
44
+ {
45
+ "label": "Endless (Short mode only, also applies to down direction)",
46
+ "value": 0
47
+ },
48
+ {
49
+ "label": "Set to factory default (120s, Long mode only)",
50
+ "value": 127
51
+ }
52
+ ]
53
+ },
54
+ {
55
+ "#": "0[0x80]",
56
+ "label": "Runtime Down: Mode",
57
+ "valueSize": 2,
58
+ "defaultValue": 1,
59
+ "allowManualEntry": false,
60
+ "options": [
61
+ {
62
+ "label": "Short (0-127s)",
63
+ "value": 0
64
+ },
65
+ {
66
+ "label": "Long (130s-23m)",
67
+ "value": 1
68
+ }
69
+ ]
70
+ },
71
+ {
72
+ "#": "0[0x7f]",
73
+ "label": "Runtime Down: Duration",
74
+ "description": "In Long mode, the runtime will be 130s + 10 * value. Will be ignored if Up direction is set to endless.",
75
+ "valueSize": 2,
76
+ "minValue": 0,
77
+ "maxValue": 127,
78
+ "defaultValue": 127,
79
+ "unsigned": true,
80
+ "options": [
81
+ {
82
+ "label": "0.5s (Short mode only)",
83
+ "value": 0
84
+ },
85
+ {
86
+ "label": "Set to factory default (120s, Long mode only)",
87
+ "value": 127
88
+ }
89
+ ]
26
90
  },
27
91
  {
28
92
  "#": "1",
29
- "label": "Stop-functionality",
93
+ "label": "Opposite Button Behavior",
30
94
  "valueSize": 1,
31
95
  "defaultValue": 1,
96
+ "unsigned": true,
32
97
  "allowManualEntry": false,
33
98
  "options": [
34
99
  {
35
- "label": "Disabled",
100
+ "label": "Reverse direction",
36
101
  "value": 0
37
102
  },
38
103
  {
39
- "label": "Enabled (default)",
40
- "value": 1
104
+ "label": "Stop",
105
+ "value": 255
41
106
  }
42
107
  ]
43
108
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zwave-js/config",
3
- "version": "10.22.3",
3
+ "version": "10.23.0",
4
4
  "description": "zwave-js: configuration files",
5
5
  "publishConfig": {
6
6
  "access": "public"