iobroker.lorawan 0.4.0 → 0.4.1
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.
- package/README.md +3 -0
- package/admin/jsonConfig.json +5 -8
- package/io-package.json +14 -14
- package/lib/modules/deviceProfiles/Dragino.json +52 -54
- package/lib/modules/deviceProfiles/LOB-S-HYB-1WIRE.json +75 -0
- package/lib/modules/deviceProfiles/LT22222.json +261 -0
- package/lib/modules/deviceProfiles/Mileslight.json +31 -0
- package/lib/modules/deviceProfiles/Sensecap.json +31 -0
- package/lib/modules/deviceProfiles/Vicki.json +227 -185
- package/lib/modules/downlinkConfighandler.js +21 -15
- package/package.json +1 -1
- package/lib/modules/deviceProfiles/Dragino LT22222.json +0 -188
- package/lib/modules/deviceProfiles/LBR-BSM-0404.json +0 -172
package/README.md
CHANGED
|
@@ -22,6 +22,9 @@ For now there is documentation in English here: http://www.hafenmeister.com/Lora
|
|
|
22
22
|
Placeholder for the next version (at the beginning of the line):
|
|
23
23
|
### **WORK IN PROGRESS**
|
|
24
24
|
-->
|
|
25
|
+
### 0.4.1 (2024-02-26)
|
|
26
|
+
* (BenAhrdt) implement new deviceprofiles
|
|
27
|
+
|
|
25
28
|
### 0.4.0 (2024-02-26)
|
|
26
29
|
* (BenAhrdt) searchallgorythm improoved, defaultvalues changed, remove query for "all"
|
|
27
30
|
|
package/admin/jsonConfig.json
CHANGED
|
@@ -107,17 +107,13 @@
|
|
|
107
107
|
"size": 3
|
|
108
108
|
},
|
|
109
109
|
{
|
|
110
|
-
"type": "
|
|
110
|
+
"type": "text",
|
|
111
111
|
"attr": "deviceType",
|
|
112
112
|
"label": "deviceType",
|
|
113
113
|
"tooltip": "deviceTypeTooltip",
|
|
114
|
-
"options": [
|
|
115
|
-
{"label":"all","value":"all"}
|
|
116
|
-
],
|
|
117
114
|
"validator": "if(data.deviceType === '' || data.deviceType === null){return false;}else{return true;}",
|
|
118
115
|
"validatorNoSaveOnError": true,
|
|
119
|
-
"default": "
|
|
120
|
-
"freeSolo": true,
|
|
116
|
+
"default": "",
|
|
121
117
|
"sm":2
|
|
122
118
|
},
|
|
123
119
|
{
|
|
@@ -164,6 +160,7 @@
|
|
|
164
160
|
{
|
|
165
161
|
"newLine": true,
|
|
166
162
|
"type": "header",
|
|
163
|
+
"attr": "_header2",
|
|
167
164
|
"text": "downlinkConfigSubHeader",
|
|
168
165
|
"size": 3
|
|
169
166
|
},
|
|
@@ -313,7 +310,7 @@
|
|
|
313
310
|
"attr": "multiplyfaktor",
|
|
314
311
|
"label": "multiplyfaktor",
|
|
315
312
|
"tooltip": "multiplyfaktorTooltip",
|
|
316
|
-
"default":
|
|
313
|
+
"default": 1,
|
|
317
314
|
"hidden": "data.type !== 'number'",
|
|
318
315
|
"sm":2
|
|
319
316
|
},
|
|
@@ -322,7 +319,7 @@
|
|
|
322
319
|
"attr": "decimalPlaces",
|
|
323
320
|
"label": "decimalPlaces",
|
|
324
321
|
"tooltip": "decimalPlacesTooltip",
|
|
325
|
-
"default":
|
|
322
|
+
"default": 0,
|
|
326
323
|
"min": 0,
|
|
327
324
|
"max": 5,
|
|
328
325
|
"hidden": "data.type !== 'number'",
|
package/io-package.json
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"common": {
|
|
3
3
|
"name": "lorawan",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.1",
|
|
5
5
|
"news": {
|
|
6
|
+
"0.4.1": {
|
|
7
|
+
"en": "implement new deviceprofiles",
|
|
8
|
+
"de": "neue geräteprofile implementieren",
|
|
9
|
+
"ru": "внедрение новых профилей устройств",
|
|
10
|
+
"pt": "implementar novos dispositivosprofiles",
|
|
11
|
+
"nl": "nieuwe apparaatprofielen implementeren",
|
|
12
|
+
"fr": "implémenter de nouveaux profils d'appareils",
|
|
13
|
+
"it": "implementare nuovi profili dei dispositivi",
|
|
14
|
+
"es": "implementar nuevos ficheros de dispositivo",
|
|
15
|
+
"pl": "wdrożenienowych profili projektowych",
|
|
16
|
+
"uk": "впроваджувати нові пристрої",
|
|
17
|
+
"zh-cn": "执行新设备配置"
|
|
18
|
+
},
|
|
6
19
|
"0.4.0": {
|
|
7
20
|
"en": "searchallgorythm improoved, defaultvalues changed, remove query for \"all\"",
|
|
8
21
|
"de": "searchallgorythm improoved, standardwerte geändert, entfernen abfrage für \"all\"",
|
|
@@ -80,19 +93,6 @@
|
|
|
80
93
|
"pl": "set attributs if undefined",
|
|
81
94
|
"uk": "встановити attributs if undefined",
|
|
82
95
|
"zh-cn": "如果未定义, 设置附件"
|
|
83
|
-
},
|
|
84
|
-
"0.3.5": {
|
|
85
|
-
"en": "set tier to 2 and improove standard devices",
|
|
86
|
-
"de": "tier auf 2 und improovierte standardgeräte",
|
|
87
|
-
"ru": "установить уровень до 2 и импровизировать стандартные устройства",
|
|
88
|
-
"pt": "definir nível para 2 e improvisar dispositivos padrão",
|
|
89
|
-
"nl": "set tier to 2 and improove standaard devices",
|
|
90
|
-
"fr": "définir le niveau à 2 et improviser les appareils standard",
|
|
91
|
-
"it": "set tier a 2 e improove dispositivi standard",
|
|
92
|
-
"es": "set tier a 2 y improove dispositivos estándar",
|
|
93
|
-
"pl": "ustawić poziom dokładności na 2 i improove standardowe urządzenia",
|
|
94
|
-
"uk": "встановити ярус до 2 і непровисних стандартних пристроїв",
|
|
95
|
-
"zh-cn": "设置等级至 2 级, 并且不包含标准设备"
|
|
96
96
|
}
|
|
97
97
|
},
|
|
98
98
|
"title": "LoRaWAN",
|
|
@@ -1,55 +1,53 @@
|
|
|
1
|
-
|
|
1
|
+
{
|
|
2
|
+
"deviceType": "Dragino",
|
|
3
|
+
"sendWithUplink": "disabled",
|
|
4
|
+
"port": 2,
|
|
5
|
+
"priority": "NORMAL",
|
|
6
|
+
"confirmed": false,
|
|
7
|
+
"downlinkParameter": [
|
|
2
8
|
{
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
"multiplyfaktor": "1",
|
|
49
|
-
"unit": "",
|
|
50
|
-
"crc": "noCrc",
|
|
51
|
-
"decimalPlaces": "0"
|
|
52
|
-
}
|
|
53
|
-
]
|
|
54
|
-
}
|
|
55
|
-
]
|
|
9
|
+
"name": "Intervall",
|
|
10
|
+
"port": 1,
|
|
11
|
+
"priority": "NORMAL",
|
|
12
|
+
"type": "number",
|
|
13
|
+
"confirmed": false,
|
|
14
|
+
"front": "01",
|
|
15
|
+
"end": "",
|
|
16
|
+
"lengthInByte": 3,
|
|
17
|
+
"on": "",
|
|
18
|
+
"off": "",
|
|
19
|
+
"multiplyfaktor": 60,
|
|
20
|
+
"unit": "min",
|
|
21
|
+
"crc": "noCrc",
|
|
22
|
+
"onClick": "",
|
|
23
|
+
"limitMin": true,
|
|
24
|
+
"limitMinValue": 0,
|
|
25
|
+
"limitMax": true,
|
|
26
|
+
"limitMaxValue": 1440,
|
|
27
|
+
"swap": false,
|
|
28
|
+
"decimalPlaces": 0
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "Reboot",
|
|
32
|
+
"port": 1,
|
|
33
|
+
"priority": "NORMAL",
|
|
34
|
+
"type": "button",
|
|
35
|
+
"confirmed": false,
|
|
36
|
+
"front": "",
|
|
37
|
+
"end": "",
|
|
38
|
+
"lengthInByte": 2,
|
|
39
|
+
"on": "",
|
|
40
|
+
"off": "",
|
|
41
|
+
"onClick": "04FF",
|
|
42
|
+
"multiplyfaktor": 1,
|
|
43
|
+
"unit": "",
|
|
44
|
+
"crc": "noCrc",
|
|
45
|
+
"decimalPlaces": 0,
|
|
46
|
+
"limitMin": false,
|
|
47
|
+
"limitMinValue": 0,
|
|
48
|
+
"limitMax": false,
|
|
49
|
+
"limitMaxValue": 0,
|
|
50
|
+
"swap": false
|
|
51
|
+
}
|
|
52
|
+
]
|
|
53
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"deviceType": "LOB-S-HYB-1WIRE",
|
|
3
|
+
"sendWithUplink": "disabled",
|
|
4
|
+
"port": 2,
|
|
5
|
+
"priority": "NORMAL",
|
|
6
|
+
"confirmed": false,
|
|
7
|
+
"downlinkParameter": [
|
|
8
|
+
{
|
|
9
|
+
"name": "Get Firmware",
|
|
10
|
+
"port": 128,
|
|
11
|
+
"priority": "NORMAL",
|
|
12
|
+
"type": "button",
|
|
13
|
+
"swap": false,
|
|
14
|
+
"confirmed": false,
|
|
15
|
+
"front": "3F",
|
|
16
|
+
"end": "",
|
|
17
|
+
"lengthInByte": 2,
|
|
18
|
+
"on": "01",
|
|
19
|
+
"off": "11",
|
|
20
|
+
"onClick": "3F",
|
|
21
|
+
"multiplyfaktor": 1,
|
|
22
|
+
"decimalPlaces": 0,
|
|
23
|
+
"unit": "",
|
|
24
|
+
"crc": "off",
|
|
25
|
+
"limitMin": false,
|
|
26
|
+
"limitMinValue": 0,
|
|
27
|
+
"limitMax": false,
|
|
28
|
+
"limitMaxValue": 0
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "Get Value",
|
|
32
|
+
"port": 128,
|
|
33
|
+
"priority": "NORMAL",
|
|
34
|
+
"type": "string",
|
|
35
|
+
"swap": false,
|
|
36
|
+
"confirmed": false,
|
|
37
|
+
"front": "g",
|
|
38
|
+
"end": "",
|
|
39
|
+
"lengthInByte": 2,
|
|
40
|
+
"on": "gMeasureCron",
|
|
41
|
+
"off": "11",
|
|
42
|
+
"onClick": "030111",
|
|
43
|
+
"multiplyfaktor": 1,
|
|
44
|
+
"decimalPlaces": 0,
|
|
45
|
+
"unit": "",
|
|
46
|
+
"crc": "off",
|
|
47
|
+
"limitMin": false,
|
|
48
|
+
"limitMinValue": 0,
|
|
49
|
+
"limitMax": false,
|
|
50
|
+
"limitMaxValue": 0
|
|
51
|
+
},
|
|
52
|
+
{
|
|
53
|
+
"name": "Set MeasureCron",
|
|
54
|
+
"port": 128,
|
|
55
|
+
"priority": "NORMAL",
|
|
56
|
+
"type": "string",
|
|
57
|
+
"swap": false,
|
|
58
|
+
"confirmed": false,
|
|
59
|
+
"front": "SMeasureCron=",
|
|
60
|
+
"end": "",
|
|
61
|
+
"lengthInByte": 2,
|
|
62
|
+
"on": "01",
|
|
63
|
+
"off": "11",
|
|
64
|
+
"onClick": "030111",
|
|
65
|
+
"multiplyfaktor": 1,
|
|
66
|
+
"decimalPlaces": 0,
|
|
67
|
+
"unit": "",
|
|
68
|
+
"crc": "noCrc",
|
|
69
|
+
"limitMin": false,
|
|
70
|
+
"limitMinValue": 0,
|
|
71
|
+
"limitMax": false,
|
|
72
|
+
"limitMaxValue": 0
|
|
73
|
+
}
|
|
74
|
+
]
|
|
75
|
+
}
|
|
@@ -0,0 +1,261 @@
|
|
|
1
|
+
{
|
|
2
|
+
"deviceType":"LT22222",
|
|
3
|
+
"sendWithUplink":"disabled",
|
|
4
|
+
"port":1,
|
|
5
|
+
"priority":"NORMAL",
|
|
6
|
+
"confirmed":false,
|
|
7
|
+
"downlinkParameter":[
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
{
|
|
11
|
+
"name": "Intervall",
|
|
12
|
+
"port": 1,
|
|
13
|
+
"priority": "NORMAL",
|
|
14
|
+
"type": "number",
|
|
15
|
+
"confirmed": true,
|
|
16
|
+
"front": "01",
|
|
17
|
+
"end": "",
|
|
18
|
+
"length": 8,
|
|
19
|
+
"on": "11",
|
|
20
|
+
"off": "11",
|
|
21
|
+
"multiplyfaktor": 60,
|
|
22
|
+
"unit": "Minuten",
|
|
23
|
+
"onClick": "030111",
|
|
24
|
+
"lengthInByte": 3,
|
|
25
|
+
"crc": "noCrc",
|
|
26
|
+
"limitMin": false,
|
|
27
|
+
"limitMinValue": 0,
|
|
28
|
+
"limitMax": false,
|
|
29
|
+
"limitMaxValue": 0,
|
|
30
|
+
"swap": false,
|
|
31
|
+
"decimalPlaces": 0
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"name": "Reboot",
|
|
35
|
+
"port": 1,
|
|
36
|
+
"priority": "NORMAL",
|
|
37
|
+
"type": "button",
|
|
38
|
+
"confirmed": false,
|
|
39
|
+
"front": "",
|
|
40
|
+
"end": "",
|
|
41
|
+
"lengthInByte": 2,
|
|
42
|
+
"on": "",
|
|
43
|
+
"off": "",
|
|
44
|
+
"onClick": "04FF",
|
|
45
|
+
"multiplyfaktor": 1,
|
|
46
|
+
"unit": "",
|
|
47
|
+
"crc": "noCrc",
|
|
48
|
+
"decimalPlaces": 0,
|
|
49
|
+
"limitMin": false,
|
|
50
|
+
"limitMinValue": 0,
|
|
51
|
+
"limitMax": false,
|
|
52
|
+
"limitMaxValue": 0,
|
|
53
|
+
"swap": false
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"name": "RPC_Level_4",
|
|
57
|
+
"port": 2,
|
|
58
|
+
"priority": "NORMAL",
|
|
59
|
+
"type": "boolean",
|
|
60
|
+
"confirmed": false,
|
|
61
|
+
"front": "03",
|
|
62
|
+
"end": "11",
|
|
63
|
+
"length": 2,
|
|
64
|
+
"on": "2104",
|
|
65
|
+
"off": "2100",
|
|
66
|
+
"multiplyfaktor": 1,
|
|
67
|
+
"unit": "",
|
|
68
|
+
"onClick": "030111",
|
|
69
|
+
"lengthInByte": 3,
|
|
70
|
+
"crc": "noCrc",
|
|
71
|
+
"limitMin": false,
|
|
72
|
+
"limitMinValue": 0,
|
|
73
|
+
"limitMax": false,
|
|
74
|
+
"limitMaxValue": 0,
|
|
75
|
+
"swap": false,
|
|
76
|
+
"decimalPlaces": 0
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "RO1_target",
|
|
80
|
+
"port": 1,
|
|
81
|
+
"priority": "NORMAL",
|
|
82
|
+
"type": "boolean",
|
|
83
|
+
"confirmed": true,
|
|
84
|
+
"front": "030111",
|
|
85
|
+
"end": "11",
|
|
86
|
+
"length": 8,
|
|
87
|
+
"on": "030111",
|
|
88
|
+
"off": "030011",
|
|
89
|
+
"multiplyfaktor": 1,
|
|
90
|
+
"unit": "",
|
|
91
|
+
"onClick": "030111",
|
|
92
|
+
"lengthInByte": 3,
|
|
93
|
+
"crc": "noCrc",
|
|
94
|
+
"limitMin": false,
|
|
95
|
+
"limitMinValue": 0,
|
|
96
|
+
"limitMax": false,
|
|
97
|
+
"limitMaxValue": 0,
|
|
98
|
+
"swap": false,
|
|
99
|
+
"decimalPlaces": 0
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"name": "RO2_target",
|
|
103
|
+
"port": 1,
|
|
104
|
+
"priority": "NORMAL",
|
|
105
|
+
"type": "boolean",
|
|
106
|
+
"confirmed": true,
|
|
107
|
+
"front": "03",
|
|
108
|
+
"end": "11",
|
|
109
|
+
"length": 2,
|
|
110
|
+
"on": "031101",
|
|
111
|
+
"off": "031100",
|
|
112
|
+
"multiplyfaktor": 1,
|
|
113
|
+
"unit": "",
|
|
114
|
+
"onClick": "030111",
|
|
115
|
+
"limitMax": false,
|
|
116
|
+
"lengthInByte": 3,
|
|
117
|
+
"crc": "noCrc",
|
|
118
|
+
"limitMin": false,
|
|
119
|
+
"limitMinValue": 0,
|
|
120
|
+
"limitMaxValue": 0,
|
|
121
|
+
"swap": false,
|
|
122
|
+
"decimalPlaces": 0
|
|
123
|
+
},
|
|
124
|
+
|
|
125
|
+
{
|
|
126
|
+
"name": "DO1_target",
|
|
127
|
+
"port": 1,
|
|
128
|
+
"priority": "NORMAL",
|
|
129
|
+
"type": "boolean",
|
|
130
|
+
"confirmed": true,
|
|
131
|
+
"front": "03",
|
|
132
|
+
"end": "11",
|
|
133
|
+
"length": 2,
|
|
134
|
+
"on": "02011111",
|
|
135
|
+
"off": "02001111",
|
|
136
|
+
"multiplyfaktor": 1,
|
|
137
|
+
"unit": "",
|
|
138
|
+
"onClick": "030111",
|
|
139
|
+
"lengthInByte": 3,
|
|
140
|
+
"crc": "noCrc",
|
|
141
|
+
"limitMin": false,
|
|
142
|
+
"limitMinValue": 0,
|
|
143
|
+
"limitMax": false,
|
|
144
|
+
"limitMaxValue": 0,
|
|
145
|
+
"swap": false,
|
|
146
|
+
"decimalPlaces": 0
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"name": "DO2_target",
|
|
150
|
+
"port": 1,
|
|
151
|
+
"priority": "NORMAL",
|
|
152
|
+
"type": "boolean",
|
|
153
|
+
"confirmed": true,
|
|
154
|
+
"front": "03",
|
|
155
|
+
"end": "11",
|
|
156
|
+
"length": 2,
|
|
157
|
+
"on": "02110111",
|
|
158
|
+
"off": "02110011",
|
|
159
|
+
"multiplyfaktor": 1,
|
|
160
|
+
"unit": "",
|
|
161
|
+
"onClick": "030111",
|
|
162
|
+
"lengthInByte": 3,
|
|
163
|
+
"crc": "noCrc",
|
|
164
|
+
"limitMin": false,
|
|
165
|
+
"limitMinValue": 0,
|
|
166
|
+
"limitMax": false,
|
|
167
|
+
"limitMaxValue": 0,
|
|
168
|
+
"swap": false,
|
|
169
|
+
"decimalPlaces": 0
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"name": "RO1_NC_for_X_Sec",
|
|
173
|
+
"port": 1,
|
|
174
|
+
"priority": "NORMAL",
|
|
175
|
+
"type": "number",
|
|
176
|
+
"swap": false,
|
|
177
|
+
"confirmed": true,
|
|
178
|
+
"front": "050112",
|
|
179
|
+
"end": "",
|
|
180
|
+
"lengthInByte": 2,
|
|
181
|
+
"on": "01",
|
|
182
|
+
"off": "11",
|
|
183
|
+
"onClick": "030111",
|
|
184
|
+
"multiplyfaktor": 1000,
|
|
185
|
+
"decimalPlaces": 0,
|
|
186
|
+
"unit": "sec",
|
|
187
|
+
"crc": "noCrc",
|
|
188
|
+
"limitMin": true,
|
|
189
|
+
"limitMinValue": 0,
|
|
190
|
+
"limitMax": true,
|
|
191
|
+
"limitMaxValue": 65
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"name": "RO2_NC_for_X_Sec",
|
|
195
|
+
"port": 1,
|
|
196
|
+
"priority": "NORMAL",
|
|
197
|
+
"type": "number",
|
|
198
|
+
"swap": false,
|
|
199
|
+
"confirmed": true,
|
|
200
|
+
"front": "050121",
|
|
201
|
+
"end": "",
|
|
202
|
+
"lengthInByte": 2,
|
|
203
|
+
"on": "01",
|
|
204
|
+
"off": "11",
|
|
205
|
+
"onClick": "030111",
|
|
206
|
+
"multiplyfaktor": 1000,
|
|
207
|
+
"decimalPlaces": 0,
|
|
208
|
+
"unit": "",
|
|
209
|
+
"crc": "noCrc",
|
|
210
|
+
"limitMin": true,
|
|
211
|
+
"limitMinValue": 0,
|
|
212
|
+
"limitMax": true,
|
|
213
|
+
"limitMaxValue": 65
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"name": "DO1_L_FOR_X_SEC",
|
|
217
|
+
"port": 1,
|
|
218
|
+
"priority": "NORMAL",
|
|
219
|
+
"type": "number",
|
|
220
|
+
"swap": false,
|
|
221
|
+
"confirmed": true,
|
|
222
|
+
"front": "A900011111",
|
|
223
|
+
"end": "",
|
|
224
|
+
"lengthInByte": 2,
|
|
225
|
+
"on": "01",
|
|
226
|
+
"off": "11",
|
|
227
|
+
"onClick": "030111",
|
|
228
|
+
"multiplyfaktor": 1000,
|
|
229
|
+
"decimalPlaces": 0,
|
|
230
|
+
"unit": "",
|
|
231
|
+
"crc": "noCrc",
|
|
232
|
+
"limitMin": true,
|
|
233
|
+
"limitMinValue": 0,
|
|
234
|
+
"limitMax": true,
|
|
235
|
+
"limitMaxValue": 65
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"name": "DO1_L_FOR_2_SEC",
|
|
239
|
+
"port": 1,
|
|
240
|
+
"priority": "NORMAL",
|
|
241
|
+
"type": "button",
|
|
242
|
+
"confirmed": true,
|
|
243
|
+
"front": "03",
|
|
244
|
+
"end": "11",
|
|
245
|
+
"length": 2,
|
|
246
|
+
"on": "A90001111107D0",
|
|
247
|
+
"off": "",
|
|
248
|
+
"multiplyfaktor": 1,
|
|
249
|
+
"unit": "",
|
|
250
|
+
"onClick": "A90001111107D0",
|
|
251
|
+
"swap": false,
|
|
252
|
+
"lengthInByte": 3,
|
|
253
|
+
"crc": "noCrc",
|
|
254
|
+
"limitMin": false,
|
|
255
|
+
"limitMinValue": 0,
|
|
256
|
+
"limitMax": false,
|
|
257
|
+
"limitMaxValue": 0,
|
|
258
|
+
"decimalPlaces": 0
|
|
259
|
+
}
|
|
260
|
+
]
|
|
261
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"deviceType": "Mileslight",
|
|
3
|
+
"sendWithUplink": "disabled",
|
|
4
|
+
"port": 2,
|
|
5
|
+
"priority": "NORMAL",
|
|
6
|
+
"confirmed": false,
|
|
7
|
+
"downlinkParameter": [
|
|
8
|
+
{
|
|
9
|
+
"name": "Intervall",
|
|
10
|
+
"port": 84,
|
|
11
|
+
"priority": "NORMAL",
|
|
12
|
+
"type": "number",
|
|
13
|
+
"swap": true,
|
|
14
|
+
"confirmed": false,
|
|
15
|
+
"front": "FF03",
|
|
16
|
+
"end": "",
|
|
17
|
+
"lengthInByte": 2,
|
|
18
|
+
"on": "FF03",
|
|
19
|
+
"off": "11",
|
|
20
|
+
"onClick": "030111",
|
|
21
|
+
"multiplyfaktor": 60,
|
|
22
|
+
"decimalPlaces": 0,
|
|
23
|
+
"unit": "min",
|
|
24
|
+
"crc": "noCrc",
|
|
25
|
+
"limitMin": true,
|
|
26
|
+
"limitMinValue": 0,
|
|
27
|
+
"limitMax": false,
|
|
28
|
+
"limitMaxValue": 0
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"deviceType": "Sensecap",
|
|
3
|
+
"sendWithUplink": "disabled",
|
|
4
|
+
"port": 2,
|
|
5
|
+
"priority": "NORMAL",
|
|
6
|
+
"confirmed": false,
|
|
7
|
+
"downlinkParameter": [
|
|
8
|
+
{
|
|
9
|
+
"name": "Intervall",
|
|
10
|
+
"port": 2,
|
|
11
|
+
"priority": "NORMAL",
|
|
12
|
+
"type": "number",
|
|
13
|
+
"swap": true,
|
|
14
|
+
"confirmed": false,
|
|
15
|
+
"front": "0089001122",
|
|
16
|
+
"end": "",
|
|
17
|
+
"lengthInByte": 2,
|
|
18
|
+
"on": "01",
|
|
19
|
+
"off": "11",
|
|
20
|
+
"onClick": "030111",
|
|
21
|
+
"multiplyfaktor": 1,
|
|
22
|
+
"decimalPlaces": 0,
|
|
23
|
+
"unit": "min",
|
|
24
|
+
"crc": "KERMIT.LittleEndian",
|
|
25
|
+
"limitMin": true,
|
|
26
|
+
"limitMinValue": 0,
|
|
27
|
+
"limitMax": true,
|
|
28
|
+
"limitMaxValue": 65
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
}
|