node-red-contrib-knx-ultimate 4.3.16 → 4.3.17
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/CHANGELOG.md +5 -0
- package/examples/Alerter - Device Alert Aggregation.json +196 -0
- package/examples/Auto Responder - Read Request Defaults.json +43 -0
- package/examples/Garage - Door Controller.json +132 -0
- package/examples/Global Context - Expose KNX Values.json +45 -0
- package/examples/HA Translator - Payload Conversion.json +118 -0
- package/examples/Hue Area Motion - Zone Presence.json +77 -0
- package/examples/Hue Battery - Level Status.json +77 -0
- package/examples/Hue Button - Short and Dim Commands.json +83 -0
- package/examples/Hue Camera Motion - Presence.json +77 -0
- package/examples/Hue Config - Bridge Template.json +27 -0
- package/examples/Hue Contact Sensor - Open Closed.json +75 -0
- package/examples/Hue Device Software Update - Availability.json +77 -0
- package/examples/Hue Humidity Sensor - Relative Humidity.json +77 -0
- package/examples/Hue Light - Switch and Brightness.json +67 -0
- package/examples/Hue Light Sensor - Lux to KNX.json +77 -0
- package/examples/Hue Motion - Presence Sensor.json +76 -0
- package/examples/Hue Plug - Switch and State.json +63 -0
- package/examples/Hue Scene - Recall from KNX.json +63 -0
- package/examples/Hue Tap Dial - Relative Dimming.json +76 -0
- package/examples/Hue Temperature Sensor - Celsius to KNX.json +77 -0
- package/examples/Hue Zigbee Connectivity - Online Status.json +77 -0
- package/examples/IoT Bridge - MQTT Bidirectional Mapping.json +132 -0
- package/examples/Load Control - Manual Shedding Mode.json +174 -0
- package/examples/Staircase - Timer, Override and Block.json +305 -0
- package/img/readmemain.png +0 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,11 @@
|
|
|
6
6
|
|
|
7
7
|
# CHANGELOG
|
|
8
8
|
|
|
9
|
+
**Version 4.3.17** - May 2026<br/>
|
|
10
|
+
|
|
11
|
+
- Examples: expanded the `examples/` folder to provide dedicated Node-RED flow files for all remaining KNX Ultimate nodes, including `KNX Staircase`, `KNX Garage`, `KNX Load Control`, `KNX IoT Bridge`, `KNX Auto Responder`, `KNX Alerter`, `KNX Global Context`, `KNX HA Translator`, and the full Philips Hue node set.<br/>
|
|
12
|
+
- Examples: adopted a consistent one-file-per-node approach so users can import focused flows and quickly understand each node configuration and behavior.<br/>
|
|
13
|
+
|
|
9
14
|
**Version 4.3.16** - May 2026<br/>
|
|
10
15
|
|
|
11
16
|
- Docs/help/wiki: updated **KNX DateTime** help HTML and DateTime wiki pages (**EN/IT**) to document current `DPT 19.001` behavior based on JavaScript `Date`, additional input object fields (`msg.payload.dateTime` / `timestamp` / `epoch`), queued send while gateway is disconnected (latest pending only), and output metadata `msg.knxUltimateDateTime.date`.<br/>
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "al_tab",
|
|
4
|
+
"type": "tab",
|
|
5
|
+
"label": "KNX Alerter",
|
|
6
|
+
"disabled": false,
|
|
7
|
+
"info": ""
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"id": "al_cfg",
|
|
11
|
+
"type": "knxUltimate-config",
|
|
12
|
+
"z": "",
|
|
13
|
+
"host": "224.0.23.12",
|
|
14
|
+
"port": "3671",
|
|
15
|
+
"physAddr": "15.15.211",
|
|
16
|
+
"suppressACKRequest": false,
|
|
17
|
+
"csv": "",
|
|
18
|
+
"KNXEthInterface": "Auto",
|
|
19
|
+
"KNXEthInterfaceManuallyInput": "",
|
|
20
|
+
"autoReconnect": "no"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"id": "al_c",
|
|
24
|
+
"type": "comment",
|
|
25
|
+
"z": "al_tab",
|
|
26
|
+
"name": "Aggregate alarm devices and emit 3 outputs",
|
|
27
|
+
"info": "",
|
|
28
|
+
"x": 370,
|
|
29
|
+
"y": 60,
|
|
30
|
+
"wires": []
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"id": "al_node",
|
|
34
|
+
"type": "knxUltimateAlerter",
|
|
35
|
+
"z": "al_tab",
|
|
36
|
+
"server": "al_cfg",
|
|
37
|
+
"name": "KNX Alerter",
|
|
38
|
+
"property": "payload",
|
|
39
|
+
"propertyType": "msg",
|
|
40
|
+
"rules": [
|
|
41
|
+
{
|
|
42
|
+
"topic": "2/1/1",
|
|
43
|
+
"devicename": "Smoke Kitchen",
|
|
44
|
+
"longdevicename": "Smoke detector kitchen"
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
"topic": "2/1/2",
|
|
48
|
+
"devicename": "Water Laundry",
|
|
49
|
+
"longdevicename": "Water leak laundry room"
|
|
50
|
+
}
|
|
51
|
+
],
|
|
52
|
+
"whentostart": "ifnewalert",
|
|
53
|
+
"timerinterval": "2",
|
|
54
|
+
"initialreadGAInRules": "1",
|
|
55
|
+
"x": 640,
|
|
56
|
+
"y": 220,
|
|
57
|
+
"wires": [
|
|
58
|
+
[
|
|
59
|
+
"al_dbg1"
|
|
60
|
+
],
|
|
61
|
+
[
|
|
62
|
+
"al_dbg2"
|
|
63
|
+
],
|
|
64
|
+
[
|
|
65
|
+
"al_dbg3"
|
|
66
|
+
]
|
|
67
|
+
]
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
"id": "al_on",
|
|
71
|
+
"type": "inject",
|
|
72
|
+
"z": "al_tab",
|
|
73
|
+
"name": "Alarm ON 2/1/1",
|
|
74
|
+
"props": [
|
|
75
|
+
{
|
|
76
|
+
"p": "topic",
|
|
77
|
+
"v": "2/1/1",
|
|
78
|
+
"vt": "str"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"p": "payload",
|
|
82
|
+
"v": "true",
|
|
83
|
+
"vt": "bool"
|
|
84
|
+
}
|
|
85
|
+
],
|
|
86
|
+
"repeat": "",
|
|
87
|
+
"crontab": "",
|
|
88
|
+
"once": false,
|
|
89
|
+
"onceDelay": 0.1,
|
|
90
|
+
"x": 180,
|
|
91
|
+
"y": 180,
|
|
92
|
+
"wires": [
|
|
93
|
+
[
|
|
94
|
+
"al_node"
|
|
95
|
+
]
|
|
96
|
+
]
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"id": "al_off",
|
|
100
|
+
"type": "inject",
|
|
101
|
+
"z": "al_tab",
|
|
102
|
+
"name": "Alarm OFF 2/1/1",
|
|
103
|
+
"props": [
|
|
104
|
+
{
|
|
105
|
+
"p": "topic",
|
|
106
|
+
"v": "2/1/1",
|
|
107
|
+
"vt": "str"
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"p": "payload",
|
|
111
|
+
"v": "false",
|
|
112
|
+
"vt": "bool"
|
|
113
|
+
}
|
|
114
|
+
],
|
|
115
|
+
"repeat": "",
|
|
116
|
+
"crontab": "",
|
|
117
|
+
"once": false,
|
|
118
|
+
"onceDelay": 0.1,
|
|
119
|
+
"x": 190,
|
|
120
|
+
"y": 220,
|
|
121
|
+
"wires": [
|
|
122
|
+
[
|
|
123
|
+
"al_node"
|
|
124
|
+
]
|
|
125
|
+
]
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"id": "al_start",
|
|
129
|
+
"type": "inject",
|
|
130
|
+
"z": "al_tab",
|
|
131
|
+
"name": "Force cycle start",
|
|
132
|
+
"props": [
|
|
133
|
+
{
|
|
134
|
+
"p": "start",
|
|
135
|
+
"v": "true",
|
|
136
|
+
"vt": "bool"
|
|
137
|
+
}
|
|
138
|
+
],
|
|
139
|
+
"repeat": "",
|
|
140
|
+
"crontab": "",
|
|
141
|
+
"once": false,
|
|
142
|
+
"onceDelay": 0.1,
|
|
143
|
+
"x": 180,
|
|
144
|
+
"y": 260,
|
|
145
|
+
"wires": [
|
|
146
|
+
[
|
|
147
|
+
"al_node"
|
|
148
|
+
]
|
|
149
|
+
]
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"id": "al_dbg1",
|
|
153
|
+
"type": "debug",
|
|
154
|
+
"z": "al_tab",
|
|
155
|
+
"name": "Output 1 - each device",
|
|
156
|
+
"active": true,
|
|
157
|
+
"tosidebar": true,
|
|
158
|
+
"console": false,
|
|
159
|
+
"tostatus": true,
|
|
160
|
+
"complete": "true",
|
|
161
|
+
"targetType": "full",
|
|
162
|
+
"x": 930,
|
|
163
|
+
"y": 180,
|
|
164
|
+
"wires": []
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"id": "al_dbg2",
|
|
168
|
+
"type": "debug",
|
|
169
|
+
"z": "al_tab",
|
|
170
|
+
"name": "Output 2 - all devices",
|
|
171
|
+
"active": true,
|
|
172
|
+
"tosidebar": true,
|
|
173
|
+
"console": false,
|
|
174
|
+
"tostatus": true,
|
|
175
|
+
"complete": "true",
|
|
176
|
+
"targetType": "full",
|
|
177
|
+
"x": 930,
|
|
178
|
+
"y": 220,
|
|
179
|
+
"wires": []
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
"id": "al_dbg3",
|
|
183
|
+
"type": "debug",
|
|
184
|
+
"z": "al_tab",
|
|
185
|
+
"name": "Output 3 - last device",
|
|
186
|
+
"active": true,
|
|
187
|
+
"tosidebar": true,
|
|
188
|
+
"console": false,
|
|
189
|
+
"tostatus": true,
|
|
190
|
+
"complete": "true",
|
|
191
|
+
"targetType": "full",
|
|
192
|
+
"x": 930,
|
|
193
|
+
"y": 260,
|
|
194
|
+
"wires": []
|
|
195
|
+
}
|
|
196
|
+
]
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "ar_tab",
|
|
4
|
+
"type": "tab",
|
|
5
|
+
"label": "KNX Auto Responder",
|
|
6
|
+
"disabled": false,
|
|
7
|
+
"info": ""
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"id": "ar_cfg",
|
|
11
|
+
"type": "knxUltimate-config",
|
|
12
|
+
"z": "",
|
|
13
|
+
"host": "224.0.23.12",
|
|
14
|
+
"port": "3671",
|
|
15
|
+
"physAddr": "15.15.212",
|
|
16
|
+
"suppressACKRequest": false,
|
|
17
|
+
"csv": "",
|
|
18
|
+
"KNXEthInterface": "Auto",
|
|
19
|
+
"KNXEthInterfaceManuallyInput": "",
|
|
20
|
+
"autoReconnect": "no"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"id": "ar_c",
|
|
24
|
+
"type": "comment",
|
|
25
|
+
"z": "ar_tab",
|
|
26
|
+
"name": "Respond automatically to KNX read requests with configured defaults",
|
|
27
|
+
"info": "",
|
|
28
|
+
"x": 420,
|
|
29
|
+
"y": 70,
|
|
30
|
+
"wires": []
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"id": "ar_node",
|
|
34
|
+
"type": "knxUltimateAutoResponder",
|
|
35
|
+
"z": "ar_tab",
|
|
36
|
+
"server": "ar_cfg",
|
|
37
|
+
"name": "Auto responder",
|
|
38
|
+
"commandText": "[{\"ga\":\"2/7/1\",\"default\":true},{\"ga\":\"2/7/2\",\"dpt\":\"5.001\",\"default\":25},{\"ga\":\"2/7/3\",\"dpt\":\"16.001\",\"default\":\"Ready\"}]",
|
|
39
|
+
"x": 420,
|
|
40
|
+
"y": 170,
|
|
41
|
+
"wires": []
|
|
42
|
+
}
|
|
43
|
+
]
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "ga_tab",
|
|
4
|
+
"type": "tab",
|
|
5
|
+
"label": "KNX Garage",
|
|
6
|
+
"disabled": false,
|
|
7
|
+
"info": ""
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"id": "ga_cfg",
|
|
11
|
+
"type": "knxUltimate-config",
|
|
12
|
+
"z": "",
|
|
13
|
+
"host": "224.0.23.12",
|
|
14
|
+
"port": "3671",
|
|
15
|
+
"physAddr": "15.15.213",
|
|
16
|
+
"suppressACKRequest": false,
|
|
17
|
+
"csv": "",
|
|
18
|
+
"KNXEthInterface": "Auto",
|
|
19
|
+
"KNXEthInterfaceManuallyInput": "",
|
|
20
|
+
"autoReconnect": "no"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"id": "ga_c",
|
|
24
|
+
"type": "comment",
|
|
25
|
+
"z": "ga_tab",
|
|
26
|
+
"name": "Garage controller with command, moving and obstruction GA",
|
|
27
|
+
"info": "",
|
|
28
|
+
"x": 360,
|
|
29
|
+
"y": 60,
|
|
30
|
+
"wires": []
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"id": "ga_node",
|
|
34
|
+
"type": "knxUltimateGarage",
|
|
35
|
+
"z": "ga_tab",
|
|
36
|
+
"server": "ga_cfg",
|
|
37
|
+
"name": "Garage Door",
|
|
38
|
+
"outputtopic": "events/garage",
|
|
39
|
+
"gaCommand": "1/2/1",
|
|
40
|
+
"nameCommand": "Garage command",
|
|
41
|
+
"dptCommand": "1.001",
|
|
42
|
+
"gaImpulse": "1/2/2",
|
|
43
|
+
"nameImpulse": "Garage impulse",
|
|
44
|
+
"dptImpulse": "1.017",
|
|
45
|
+
"gaMoving": "1/2/3",
|
|
46
|
+
"nameMoving": "Garage moving",
|
|
47
|
+
"dptMoving": "1.001",
|
|
48
|
+
"gaObstruction": "1/2/4",
|
|
49
|
+
"nameObstruction": "Garage obstruction",
|
|
50
|
+
"dptObstruction": "1.001",
|
|
51
|
+
"gaHoldOpen": "1/2/5",
|
|
52
|
+
"nameHoldOpen": "Hold open",
|
|
53
|
+
"dptHoldOpen": "1.001",
|
|
54
|
+
"gaDisable": "1/2/6",
|
|
55
|
+
"nameDisable": "Disable",
|
|
56
|
+
"dptDisable": "1.001",
|
|
57
|
+
"gaPhotocell": "1/2/7",
|
|
58
|
+
"namePhotocell": "Photocell",
|
|
59
|
+
"dptPhotocell": "1.001",
|
|
60
|
+
"autoCloseEnable": true,
|
|
61
|
+
"autoCloseSeconds": 120,
|
|
62
|
+
"emitEvents": true,
|
|
63
|
+
"x": 650,
|
|
64
|
+
"y": 220,
|
|
65
|
+
"wires": [
|
|
66
|
+
[
|
|
67
|
+
"ga_dbg"
|
|
68
|
+
]
|
|
69
|
+
]
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"id": "ga_inj_on",
|
|
73
|
+
"type": "inject",
|
|
74
|
+
"z": "ga_tab",
|
|
75
|
+
"name": "Open/Toggle",
|
|
76
|
+
"props": [
|
|
77
|
+
{
|
|
78
|
+
"p": "payload",
|
|
79
|
+
"v": "true",
|
|
80
|
+
"vt": "bool"
|
|
81
|
+
}
|
|
82
|
+
],
|
|
83
|
+
"repeat": "",
|
|
84
|
+
"crontab": "",
|
|
85
|
+
"once": false,
|
|
86
|
+
"onceDelay": 0.1,
|
|
87
|
+
"topic": "",
|
|
88
|
+
"x": 170,
|
|
89
|
+
"y": 200,
|
|
90
|
+
"wires": [
|
|
91
|
+
"ga_node"
|
|
92
|
+
]
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"id": "ga_inj_off",
|
|
96
|
+
"type": "inject",
|
|
97
|
+
"z": "ga_tab",
|
|
98
|
+
"name": "Close/Stop",
|
|
99
|
+
"props": [
|
|
100
|
+
{
|
|
101
|
+
"p": "payload",
|
|
102
|
+
"v": "false",
|
|
103
|
+
"vt": "bool"
|
|
104
|
+
}
|
|
105
|
+
],
|
|
106
|
+
"repeat": "",
|
|
107
|
+
"crontab": "",
|
|
108
|
+
"once": false,
|
|
109
|
+
"onceDelay": 0.1,
|
|
110
|
+
"topic": "",
|
|
111
|
+
"x": 170,
|
|
112
|
+
"y": 240,
|
|
113
|
+
"wires": [
|
|
114
|
+
"ga_node"
|
|
115
|
+
]
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"id": "ga_dbg",
|
|
119
|
+
"type": "debug",
|
|
120
|
+
"z": "ga_tab",
|
|
121
|
+
"name": "Garage events",
|
|
122
|
+
"active": true,
|
|
123
|
+
"tosidebar": true,
|
|
124
|
+
"console": false,
|
|
125
|
+
"tostatus": true,
|
|
126
|
+
"complete": "true",
|
|
127
|
+
"targetType": "full",
|
|
128
|
+
"x": 900,
|
|
129
|
+
"y": 220,
|
|
130
|
+
"wires": []
|
|
131
|
+
}
|
|
132
|
+
]
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "gc_tab",
|
|
4
|
+
"type": "tab",
|
|
5
|
+
"label": "KNX Global Context",
|
|
6
|
+
"disabled": false,
|
|
7
|
+
"info": ""
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"id": "gc_cfg",
|
|
11
|
+
"type": "knxUltimate-config",
|
|
12
|
+
"z": "",
|
|
13
|
+
"host": "224.0.23.12",
|
|
14
|
+
"port": "3671",
|
|
15
|
+
"physAddr": "15.15.214",
|
|
16
|
+
"suppressACKRequest": false,
|
|
17
|
+
"csv": "",
|
|
18
|
+
"KNXEthInterface": "Auto",
|
|
19
|
+
"KNXEthInterfaceManuallyInput": "",
|
|
20
|
+
"autoReconnect": "no"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"id": "gc_c",
|
|
24
|
+
"type": "comment",
|
|
25
|
+
"z": "gc_tab",
|
|
26
|
+
"name": "Expose KNX group addresses to global context",
|
|
27
|
+
"info": "",
|
|
28
|
+
"x": 350,
|
|
29
|
+
"y": 60,
|
|
30
|
+
"wires": []
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"id": "gc_node",
|
|
34
|
+
"type": "knxUltimateGlobalContext",
|
|
35
|
+
"z": "gc_tab",
|
|
36
|
+
"server": "gc_cfg",
|
|
37
|
+
"name": "KNXGlobalContext",
|
|
38
|
+
"exposeAsVariable": "exposeAsVariableREADWRITE",
|
|
39
|
+
"writeExecutionInterval": 1000,
|
|
40
|
+
"contextStorage": "",
|
|
41
|
+
"x": 350,
|
|
42
|
+
"y": 140,
|
|
43
|
+
"wires": []
|
|
44
|
+
}
|
|
45
|
+
]
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "ha_tab",
|
|
4
|
+
"type": "tab",
|
|
5
|
+
"label": "KNX HA Translator",
|
|
6
|
+
"disabled": false,
|
|
7
|
+
"info": ""
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"id": "ha_c",
|
|
11
|
+
"type": "comment",
|
|
12
|
+
"z": "ha_tab",
|
|
13
|
+
"name": "Translate Home Assistant-like strings to booleans",
|
|
14
|
+
"info": "",
|
|
15
|
+
"x": 350,
|
|
16
|
+
"y": 60,
|
|
17
|
+
"wires": []
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
"id": "ha_node",
|
|
21
|
+
"type": "knxUltimateHATranslator",
|
|
22
|
+
"z": "ha_tab",
|
|
23
|
+
"name": "HA Translator",
|
|
24
|
+
"payloadPropName": "payload",
|
|
25
|
+
"commandText": "on:true\noff:false\nopen:true\nclosed:false\nhome:true\nnot_home:false",
|
|
26
|
+
"x": 560,
|
|
27
|
+
"y": 220,
|
|
28
|
+
"wires": [
|
|
29
|
+
[
|
|
30
|
+
"ha_dbg"
|
|
31
|
+
]
|
|
32
|
+
]
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
"id": "ha_on",
|
|
36
|
+
"type": "inject",
|
|
37
|
+
"z": "ha_tab",
|
|
38
|
+
"name": "payload:on",
|
|
39
|
+
"props": [
|
|
40
|
+
{
|
|
41
|
+
"p": "payload",
|
|
42
|
+
"v": "on",
|
|
43
|
+
"vt": "str"
|
|
44
|
+
}
|
|
45
|
+
],
|
|
46
|
+
"repeat": "",
|
|
47
|
+
"crontab": "",
|
|
48
|
+
"once": false,
|
|
49
|
+
"onceDelay": 0.1,
|
|
50
|
+
"topic": "",
|
|
51
|
+
"x": 180,
|
|
52
|
+
"y": 180,
|
|
53
|
+
"wires": [
|
|
54
|
+
"ha_node"
|
|
55
|
+
]
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"id": "ha_off",
|
|
59
|
+
"type": "inject",
|
|
60
|
+
"z": "ha_tab",
|
|
61
|
+
"name": "payload:off",
|
|
62
|
+
"props": [
|
|
63
|
+
{
|
|
64
|
+
"p": "payload",
|
|
65
|
+
"v": "off",
|
|
66
|
+
"vt": "str"
|
|
67
|
+
}
|
|
68
|
+
],
|
|
69
|
+
"repeat": "",
|
|
70
|
+
"crontab": "",
|
|
71
|
+
"once": false,
|
|
72
|
+
"onceDelay": 0.1,
|
|
73
|
+
"topic": "",
|
|
74
|
+
"x": 180,
|
|
75
|
+
"y": 220,
|
|
76
|
+
"wires": [
|
|
77
|
+
"ha_node"
|
|
78
|
+
]
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"id": "ha_home",
|
|
82
|
+
"type": "inject",
|
|
83
|
+
"z": "ha_tab",
|
|
84
|
+
"name": "payload:home",
|
|
85
|
+
"props": [
|
|
86
|
+
{
|
|
87
|
+
"p": "payload",
|
|
88
|
+
"v": "home",
|
|
89
|
+
"vt": "str"
|
|
90
|
+
}
|
|
91
|
+
],
|
|
92
|
+
"repeat": "",
|
|
93
|
+
"crontab": "",
|
|
94
|
+
"once": false,
|
|
95
|
+
"onceDelay": 0.1,
|
|
96
|
+
"topic": "",
|
|
97
|
+
"x": 180,
|
|
98
|
+
"y": 260,
|
|
99
|
+
"wires": [
|
|
100
|
+
"ha_node"
|
|
101
|
+
]
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"id": "ha_dbg",
|
|
105
|
+
"type": "debug",
|
|
106
|
+
"z": "ha_tab",
|
|
107
|
+
"name": "Translated payload",
|
|
108
|
+
"active": true,
|
|
109
|
+
"tosidebar": true,
|
|
110
|
+
"console": false,
|
|
111
|
+
"tostatus": true,
|
|
112
|
+
"complete": "true",
|
|
113
|
+
"targetType": "full",
|
|
114
|
+
"x": 820,
|
|
115
|
+
"y": 220,
|
|
116
|
+
"wires": []
|
|
117
|
+
}
|
|
118
|
+
]
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "h_tab_knxUltimateHueAreaMotion",
|
|
4
|
+
"type": "tab",
|
|
5
|
+
"label": "knxUltimateHueAreaMotion",
|
|
6
|
+
"disabled": false,
|
|
7
|
+
"info": ""
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"id": "h_knx",
|
|
11
|
+
"type": "knxUltimate-config",
|
|
12
|
+
"z": "",
|
|
13
|
+
"host": "224.0.23.12",
|
|
14
|
+
"port": "3671",
|
|
15
|
+
"physAddr": "15.15.220",
|
|
16
|
+
"suppressACKRequest": false,
|
|
17
|
+
"csv": "",
|
|
18
|
+
"KNXEthInterface": "Auto",
|
|
19
|
+
"KNXEthInterfaceManuallyInput": "",
|
|
20
|
+
"autoReconnect": "no"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"id": "h_hue",
|
|
24
|
+
"type": "hue-config",
|
|
25
|
+
"z": "",
|
|
26
|
+
"host": "192.168.1.10",
|
|
27
|
+
"name": "Hue Bridge",
|
|
28
|
+
"bridgeid": ""
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"id": "h_c_knxUltimateHueAreaMotion",
|
|
32
|
+
"type": "comment",
|
|
33
|
+
"z": "h_tab_knxUltimateHueAreaMotion",
|
|
34
|
+
"name": "knxUltimateHueAreaMotion example (set your real Hue device id in hueDevice)",
|
|
35
|
+
"info": "",
|
|
36
|
+
"x": 430,
|
|
37
|
+
"y": 60,
|
|
38
|
+
"wires": []
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"id": "h_node_knxUltimateHueAreaMotion",
|
|
42
|
+
"type": "knxUltimateHueAreaMotion",
|
|
43
|
+
"z": "h_tab_knxUltimateHueAreaMotion",
|
|
44
|
+
"name": "Hue Area Motion",
|
|
45
|
+
"server": "h_knx",
|
|
46
|
+
"serverHue": "h_hue",
|
|
47
|
+
"hueDevice": "device-id-here",
|
|
48
|
+
"nameAreaMotion": "Area motion",
|
|
49
|
+
"GAareaMotion": "5/3/1",
|
|
50
|
+
"dptAreaMotion": "1.001",
|
|
51
|
+
"readStatusAtStartup": "yes",
|
|
52
|
+
"enableNodePINS": "yes",
|
|
53
|
+
"outputs": 1,
|
|
54
|
+
"x": 620,
|
|
55
|
+
"y": 180,
|
|
56
|
+
"wires": [
|
|
57
|
+
[
|
|
58
|
+
"h_dbg_knxUltimateHueAreaMotion"
|
|
59
|
+
]
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"id": "h_dbg_knxUltimateHueAreaMotion",
|
|
64
|
+
"type": "debug",
|
|
65
|
+
"z": "h_tab_knxUltimateHueAreaMotion",
|
|
66
|
+
"name": "knxUltimateHueAreaMotion output",
|
|
67
|
+
"active": true,
|
|
68
|
+
"tosidebar": true,
|
|
69
|
+
"console": false,
|
|
70
|
+
"tostatus": true,
|
|
71
|
+
"complete": "true",
|
|
72
|
+
"targetType": "full",
|
|
73
|
+
"x": 920,
|
|
74
|
+
"y": 180,
|
|
75
|
+
"wires": []
|
|
76
|
+
}
|
|
77
|
+
]
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "h_tab_knxUltimateHueBattery",
|
|
4
|
+
"type": "tab",
|
|
5
|
+
"label": "knxUltimateHueBattery",
|
|
6
|
+
"disabled": false,
|
|
7
|
+
"info": ""
|
|
8
|
+
},
|
|
9
|
+
{
|
|
10
|
+
"id": "h_knx",
|
|
11
|
+
"type": "knxUltimate-config",
|
|
12
|
+
"z": "",
|
|
13
|
+
"host": "224.0.23.12",
|
|
14
|
+
"port": "3671",
|
|
15
|
+
"physAddr": "15.15.225",
|
|
16
|
+
"suppressACKRequest": false,
|
|
17
|
+
"csv": "",
|
|
18
|
+
"KNXEthInterface": "Auto",
|
|
19
|
+
"KNXEthInterfaceManuallyInput": "",
|
|
20
|
+
"autoReconnect": "no"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"id": "h_hue",
|
|
24
|
+
"type": "hue-config",
|
|
25
|
+
"z": "",
|
|
26
|
+
"host": "192.168.1.10",
|
|
27
|
+
"name": "Hue Bridge",
|
|
28
|
+
"bridgeid": ""
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"id": "h_c_knxUltimateHueBattery",
|
|
32
|
+
"type": "comment",
|
|
33
|
+
"z": "h_tab_knxUltimateHueBattery",
|
|
34
|
+
"name": "knxUltimateHueBattery example (set your real Hue device id in hueDevice)",
|
|
35
|
+
"info": "",
|
|
36
|
+
"x": 430,
|
|
37
|
+
"y": 60,
|
|
38
|
+
"wires": []
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
"id": "h_node_knxUltimateHueBattery",
|
|
42
|
+
"type": "knxUltimateHueBattery",
|
|
43
|
+
"z": "h_tab_knxUltimateHueBattery",
|
|
44
|
+
"name": "Hue Battery",
|
|
45
|
+
"server": "h_knx",
|
|
46
|
+
"serverHue": "h_hue",
|
|
47
|
+
"hueDevice": "device-id-here",
|
|
48
|
+
"namebatterysensor": "Battery %",
|
|
49
|
+
"GAbatterysensor": "5/8/1",
|
|
50
|
+
"dptbatterysensor": "5.001",
|
|
51
|
+
"readStatusAtStartup": "yes",
|
|
52
|
+
"enableNodePINS": "yes",
|
|
53
|
+
"outputs": 1,
|
|
54
|
+
"x": 620,
|
|
55
|
+
"y": 180,
|
|
56
|
+
"wires": [
|
|
57
|
+
[
|
|
58
|
+
"h_dbg_knxUltimateHueBattery"
|
|
59
|
+
]
|
|
60
|
+
]
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"id": "h_dbg_knxUltimateHueBattery",
|
|
64
|
+
"type": "debug",
|
|
65
|
+
"z": "h_tab_knxUltimateHueBattery",
|
|
66
|
+
"name": "knxUltimateHueBattery output",
|
|
67
|
+
"active": true,
|
|
68
|
+
"tosidebar": true,
|
|
69
|
+
"console": false,
|
|
70
|
+
"tostatus": true,
|
|
71
|
+
"complete": "true",
|
|
72
|
+
"targetType": "full",
|
|
73
|
+
"x": 920,
|
|
74
|
+
"y": 180,
|
|
75
|
+
"wires": []
|
|
76
|
+
}
|
|
77
|
+
]
|