node-red-contrib-homekit-bridged 2.0.0-dev.5 → 2.0.0-dev.8

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.
Files changed (128) hide show
  1. package/build/lib/HAPHostNode.js +183 -141
  2. package/build/lib/HAPServiceNode.js +199 -172
  3. package/build/lib/HAPServiceNode2.js +207 -172
  4. package/build/lib/NRCHKBError.js +23 -2
  5. package/build/lib/PairingQRCode.js +62 -0
  6. package/build/lib/Storage.js +152 -90
  7. package/build/lib/api.js +654 -288
  8. package/build/lib/camera/CameraControl.js +119 -84
  9. package/build/lib/camera/CameraDelegate.js +481 -404
  10. package/build/lib/camera/MP4StreamingServer.js +148 -139
  11. package/build/lib/hap/HAPCharacteristic.js +25 -4
  12. package/build/lib/hap/HAPService.js +25 -4
  13. package/build/lib/hap/eve-app/EveCharacteristics.js +124 -81
  14. package/build/lib/hap/eve-app/EveServices.js +50 -17
  15. package/build/lib/hap/hap-nodejs.js +32 -0
  16. package/build/lib/migration/HomeKitService2Migration.js +34 -0
  17. package/build/lib/migration/NodeMigration.js +75 -0
  18. package/build/lib/types/AccessoryInformationType.js +15 -1
  19. package/build/lib/types/CameraConfigType.js +15 -1
  20. package/build/lib/types/CustomCharacteristicType.js +15 -1
  21. package/build/lib/types/HAPHostConfigType.js +15 -1
  22. package/build/lib/types/HAPHostNodeType.js +15 -1
  23. package/build/lib/types/HAPService2ConfigType.js +15 -1
  24. package/build/lib/types/HAPService2NodeType.js +15 -1
  25. package/build/lib/types/HAPServiceConfigType.js +15 -1
  26. package/build/lib/types/HAPServiceNodeType.js +15 -1
  27. package/build/lib/types/HAPStatusConfigType.js +15 -1
  28. package/build/lib/types/HAPStatusNodeType.js +15 -1
  29. package/build/lib/types/HostType.js +28 -7
  30. package/build/lib/types/NodeType.js +15 -1
  31. package/build/lib/types/PublishTimersType.js +15 -1
  32. package/build/lib/types/UniFiControllerConfigType.js +16 -0
  33. package/build/lib/types/hap-nodejs/HapAdaptiveLightingControllerMode.js +28 -7
  34. package/build/lib/types/hap-nodejs/HapCategories.js +64 -43
  35. package/build/lib/types/storage/SerializedHostType.js +15 -1
  36. package/build/lib/types/storage/StorageType.js +34 -10
  37. package/build/lib/unifi/ProtectDiscovery.js +80 -0
  38. package/build/lib/utils/AccessoryUtils.js +152 -110
  39. package/build/lib/utils/BridgeUtils.js +82 -39
  40. package/build/lib/utils/CharacteristicUtils.js +5 -49
  41. package/build/lib/utils/CharacteristicUtils2.js +5 -49
  42. package/build/lib/utils/CharacteristicUtilsBase.js +81 -0
  43. package/build/lib/utils/NodeStatusUtils.js +89 -40
  44. package/build/lib/utils/ServiceUtils.js +433 -375
  45. package/build/lib/utils/ServiceUtils2.js +519 -309
  46. package/build/lib/utils/index.js +10 -11
  47. package/build/nodes/bridge.html +206 -168
  48. package/build/nodes/bridge.js +27 -9
  49. package/build/nodes/locales/en-US/node-red-contrib-homekit-bridged.json +22 -0
  50. package/build/nodes/nrchkb.html +1753 -117
  51. package/build/nodes/nrchkb.js +66 -88
  52. package/build/nodes/plugin-instance.html +509 -0
  53. package/build/nodes/plugin-instance.js +46 -0
  54. package/build/nodes/service.html +544 -307
  55. package/build/nodes/service.js +5 -6
  56. package/build/nodes/service2.html +1721 -455
  57. package/build/nodes/service2.js +5 -8
  58. package/build/nodes/standalone.html +208 -176
  59. package/build/nodes/standalone.js +27 -9
  60. package/build/nodes/status.html +51 -18
  61. package/build/nodes/status.js +47 -40
  62. package/build/nodes/unifi-controller.html +92 -0
  63. package/build/nodes/unifi-controller.js +20 -0
  64. package/build/plugins/embedded/homebridge-camera-ffmpeg/index.js +479 -0
  65. package/build/plugins/embedded/homebridge-unifi-protect/index.js +521 -0
  66. package/build/plugins/embedded/index.js +58 -0
  67. package/build/plugins/nrchkb-homekit-plugins.js +17 -0
  68. package/build/plugins/registry/index.js +203 -0
  69. package/build/plugins/registry/types.js +16 -0
  70. package/build/scripts/migrate-homekit-service-flows.js +47 -0
  71. package/examples/demo/01 - ALL Demos single import.json +1885 -1885
  72. package/examples/demo/02 - Air Purifier.json +279 -279
  73. package/examples/demo/03 - Air Quality sensor with Battery.json +254 -254
  74. package/examples/demo/04 - Dimmable Bulb.json +172 -172
  75. package/examples/demo/05 - Color Bulb (HSV).json +195 -195
  76. package/examples/demo/06 - Fan (simple, 3 speeds).json +240 -240
  77. package/examples/demo/07 - Fan (with speed, oscillate, rotation direction).json +175 -175
  78. package/examples/demo/08 - CO2 detector.json +224 -224
  79. package/examples/demo/09 - CO (carbon monoxide) example.json +255 -255
  80. package/examples/demo/10 - Door window contact sensor.json +234 -234
  81. package/examples/demos (advanced)/01 - Television with inputs and speaker.json +541 -541
  82. package/examples/switch/01 - Plain Switch.json +178 -178
  83. package/package.json +95 -84
  84. package/build/lib/HAPHostNode.d.ts +0 -1
  85. package/build/lib/HAPServiceNode.d.ts +0 -1
  86. package/build/lib/HAPServiceNode2.d.ts +0 -1
  87. package/build/lib/NRCHKBError.d.ts +0 -3
  88. package/build/lib/Storage.d.ts +0 -30
  89. package/build/lib/api.d.ts +0 -1
  90. package/build/lib/camera/CameraControl.d.ts +0 -3
  91. package/build/lib/camera/CameraDelegate.d.ts +0 -38
  92. package/build/lib/camera/MP4StreamingServer.d.ts +0 -26
  93. package/build/lib/hap/HAPCharacteristic.d.ts +0 -9
  94. package/build/lib/hap/HAPService.d.ts +0 -6
  95. package/build/lib/hap/eve-app/EveCharacteristics.d.ts +0 -20
  96. package/build/lib/hap/eve-app/EveServices.d.ts +0 -5
  97. package/build/lib/types/AccessoryInformationType.d.ts +0 -11
  98. package/build/lib/types/CameraConfigType.d.ts +0 -24
  99. package/build/lib/types/CustomCharacteristicType.d.ts +0 -6
  100. package/build/lib/types/HAPHostConfigType.d.ts +0 -22
  101. package/build/lib/types/HAPHostNodeType.d.ts +0 -14
  102. package/build/lib/types/HAPService2ConfigType.d.ts +0 -6
  103. package/build/lib/types/HAPService2NodeType.d.ts +0 -7
  104. package/build/lib/types/HAPServiceConfigType.d.ts +0 -26
  105. package/build/lib/types/HAPServiceNodeType.d.ts +0 -38
  106. package/build/lib/types/HAPStatusConfigType.d.ts +0 -5
  107. package/build/lib/types/HAPStatusNodeType.d.ts +0 -12
  108. package/build/lib/types/HostType.d.ts +0 -5
  109. package/build/lib/types/NodeType.d.ts +0 -3
  110. package/build/lib/types/PublishTimersType.d.ts +0 -4
  111. package/build/lib/types/hap-nodejs/HapAdaptiveLightingControllerMode.d.ts +0 -5
  112. package/build/lib/types/hap-nodejs/HapCategories.d.ts +0 -41
  113. package/build/lib/types/storage/SerializedHostType.d.ts +0 -5
  114. package/build/lib/types/storage/StorageType.d.ts +0 -8
  115. package/build/lib/utils/AccessoryUtils.d.ts +0 -1
  116. package/build/lib/utils/BridgeUtils.d.ts +0 -1
  117. package/build/lib/utils/CharacteristicUtils.d.ts +0 -1
  118. package/build/lib/utils/CharacteristicUtils2.d.ts +0 -1
  119. package/build/lib/utils/NodeStatusUtils.d.ts +0 -17
  120. package/build/lib/utils/ServiceUtils.d.ts +0 -1
  121. package/build/lib/utils/ServiceUtils2.d.ts +0 -1
  122. package/build/lib/utils/index.d.ts +0 -1
  123. package/build/nodes/bridge.d.ts +0 -1
  124. package/build/nodes/nrchkb.d.ts +0 -1
  125. package/build/nodes/service.d.ts +0 -1
  126. package/build/nodes/service2.d.ts +0 -1
  127. package/build/nodes/standalone.d.ts +0 -1
  128. package/build/nodes/status.d.ts +0 -1
@@ -1,243 +1,243 @@
1
1
  [
2
- {
3
- "id": "c869b0a5.e4def8",
4
- "type": "group",
5
- "z": "60b06629.a2ebd",
6
- "name": "Fan Simplified: input from device, output to device",
7
- "style": {
8
- "stroke": "#999999",
9
- "fill": "none",
10
- "label": true,
11
- "label-position": "nw",
12
- "color": "#a4a4a4"
2
+ {
3
+ "id": "c869b0a5.e4def8",
4
+ "type": "group",
5
+ "z": "60b06629.a2ebd",
6
+ "name": "Fan Simplified: input from device, output to device",
7
+ "style": {
8
+ "stroke": "#999999",
9
+ "fill": "none",
10
+ "label": true,
11
+ "label-position": "nw",
12
+ "color": "#a4a4a4"
13
+ },
14
+ "nodes": [
15
+ "dadd634c.ae2258",
16
+ "753e3777.49a1d",
17
+ "992f4930.012aa",
18
+ "2497a466.aa0e84",
19
+ "c53b76fb.7a3cc8",
20
+ "6c9646ee.1f3a18",
21
+ "1e42a8f3.cf008f"
22
+ ],
23
+ "x": 14,
24
+ "y": 1819,
25
+ "w": 752,
26
+ "h": 202,
27
+ "info": "# Fan Simple\n\nThis example is for a 3-speed fan.\n\nSpeeds are: <br/>\nLow = 33<br/>\nMedium = 66<br/>\nHigh = 99<br/>\n\nValues outside of this are restricted and will not work. The home app will \"snap\" to these values. Siri will respond to \"set fan to low/medium/high\" with the corresponding value."
13
28
  },
14
- "nodes": [
15
- "dadd634c.ae2258",
16
- "753e3777.49a1d",
17
- "992f4930.012aa",
18
- "2497a466.aa0e84",
19
- "c53b76fb.7a3cc8",
20
- "6c9646ee.1f3a18",
21
- "1e42a8f3.cf008f"
22
- ],
23
- "x": 14,
24
- "y": 1819,
25
- "w": 752,
26
- "h": 202,
27
- "info": "# Fan Simple\n\nThis example is for a 3-speed fan.\n\nSpeeds are: <br/>\nLow = 33<br/>\nMedium = 66<br/>\nHigh = 99<br/>\n\nValues outside of this are restricted and will not work. The home app will \"snap\" to these values. Siri will respond to \"set fan to low/medium/high\" with the corresponding value."
28
- },
29
- {
30
- "id": "dadd634c.ae2258",
31
- "type": "debug",
32
- "z": "60b06629.a2ebd",
33
- "g": "c869b0a5.e4def8",
34
- "name": "Fan output",
35
- "active": true,
36
- "tosidebar": true,
37
- "console": false,
38
- "tostatus": false,
39
- "complete": "payload",
40
- "targetType": "msg",
41
- "statusVal": "",
42
- "statusType": "auto",
43
- "x": 650,
44
- "y": 1860,
45
- "wires": []
46
- },
47
- {
48
- "id": "753e3777.49a1d",
49
- "type": "homekit-service",
50
- "z": "60b06629.a2ebd",
51
- "g": "c869b0a5.e4def8",
52
- "isParent": true,
53
- "bridge": "409001a1.3e7a78",
54
- "parentService": "",
55
- "name": "Fan Speeds",
56
- "serviceName": "Fan",
57
- "topic": "",
58
- "filter": false,
59
- "manufacturer": "Gman",
60
- "model": "Default Model",
61
- "serialNo": "CRX1",
62
- "firmwareRev": "1.0.0",
63
- "hardwareRev": "1.0.0",
64
- "softwareRev": "1.0.0",
65
- "cameraConfigVideoProcessor": "ffmpeg",
66
- "cameraConfigSource": "",
67
- "cameraConfigStillImageSource": "",
68
- "cameraConfigMaxStreams": 2,
69
- "cameraConfigMaxWidth": 1280,
70
- "cameraConfigMaxHeight": 720,
71
- "cameraConfigMaxFPS": 10,
72
- "cameraConfigMaxBitrate": 300,
73
- "cameraConfigVideoCodec": "libx264",
74
- "cameraConfigAudioCodec": "libfdk_aac",
75
- "cameraConfigAudio": false,
76
- "cameraConfigPacketSize": 1316,
77
- "cameraConfigVerticalFlip": false,
78
- "cameraConfigHorizontalFlip": false,
79
- "cameraConfigMapVideo": "0:0",
80
- "cameraConfigMapAudio": "0:1",
81
- "cameraConfigVideoFilter": "scale=1280:720",
82
- "cameraConfigAdditionalCommandLine": "-tune zerolatency",
83
- "cameraConfigDebug": false,
84
- "cameraConfigSnapshotOutput": "disabled",
85
- "cameraConfigInterfaceName": "",
86
- "characteristicProperties": "{\n \"RotationSpeed\": {\n \"minValue\":0,\n \"maxValue\":99,\n \"minStep\":33\n }\n}",
87
- "outputs": 2,
88
- "x": 430,
89
- "y": 1860,
90
- "wires": [["dadd634c.ae2258"], []]
91
- },
92
- {
93
- "id": "992f4930.012aa",
94
- "type": "inject",
95
- "z": "60b06629.a2ebd",
96
- "g": "c869b0a5.e4def8",
97
- "name": "NO RESPONSE",
98
- "props": [
99
- {
100
- "p": "payload"
101
- },
102
- {
103
- "p": "topic",
104
- "vt": "str"
105
- }
106
- ],
107
- "repeat": "",
108
- "crontab": "",
109
- "once": false,
110
- "onceDelay": 0.1,
111
- "topic": "",
112
- "payload": "{\"On\":\"NO_RESPONSE\"}",
113
- "payloadType": "json",
114
- "x": 380,
115
- "y": 1940,
116
- "wires": [["753e3777.49a1d"]]
117
- },
118
- {
119
- "id": "2497a466.aa0e84",
120
- "type": "inject",
121
- "z": "60b06629.a2ebd",
122
- "g": "c869b0a5.e4def8",
123
- "name": "OFF",
124
- "props": [
125
- {
126
- "p": "payload"
127
- },
128
- {
129
- "p": "topic",
130
- "vt": "str"
131
- }
132
- ],
133
- "repeat": "",
134
- "crontab": "",
135
- "once": false,
136
- "onceDelay": 0.1,
137
- "topic": "",
138
- "payload": "{\"On\":false}",
139
- "payloadType": "json",
140
- "x": 110,
141
- "y": 1860,
142
- "wires": [["753e3777.49a1d"]]
143
- },
144
- {
145
- "id": "c53b76fb.7a3cc8",
146
- "type": "inject",
147
- "z": "60b06629.a2ebd",
148
- "g": "c869b0a5.e4def8",
149
- "name": "Low",
150
- "props": [
151
- {
152
- "p": "payload"
153
- },
154
- {
155
- "p": "topic",
156
- "vt": "str"
157
- }
158
- ],
159
- "repeat": "",
160
- "crontab": "",
161
- "once": false,
162
- "onceDelay": 0.1,
163
- "topic": "",
164
- "payload": "{\"On\":true,\"RotationSpeed\":33}",
165
- "payloadType": "json",
166
- "x": 110,
167
- "y": 1900,
168
- "wires": [["753e3777.49a1d"]]
169
- },
170
- {
171
- "id": "6c9646ee.1f3a18",
172
- "type": "inject",
173
- "z": "60b06629.a2ebd",
174
- "g": "c869b0a5.e4def8",
175
- "name": "Medium",
176
- "props": [
177
- {
178
- "p": "payload"
179
- },
180
- {
181
- "p": "topic",
182
- "vt": "str"
183
- }
184
- ],
185
- "repeat": "",
186
- "crontab": "",
187
- "once": false,
188
- "onceDelay": 0.1,
189
- "topic": "",
190
- "payload": "{\"On\":true,\"RotationSpeed\":66}",
191
- "payloadType": "json",
192
- "x": 120,
193
- "y": 1940,
194
- "wires": [["753e3777.49a1d"]]
195
- },
196
- {
197
- "id": "1e42a8f3.cf008f",
198
- "type": "inject",
199
- "z": "60b06629.a2ebd",
200
- "g": "c869b0a5.e4def8",
201
- "name": "High",
202
- "props": [
203
- {
204
- "p": "payload"
205
- },
206
- {
207
- "p": "topic",
208
- "vt": "str"
209
- }
210
- ],
211
- "repeat": "",
212
- "crontab": "",
213
- "once": false,
214
- "onceDelay": 0.1,
215
- "topic": "",
216
- "payload": "{\"On\":true,\"RotationSpeed\":99}",
217
- "payloadType": "json",
218
- "x": 110,
219
- "y": 1980,
220
- "wires": [["753e3777.49a1d"]]
221
- },
222
- {
223
- "id": "409001a1.3e7a78",
224
- "type": "homekit-bridge",
225
- "z": "",
226
- "bridgeName": "Demo 1",
227
- "pinCode": "153-10-538",
228
- "port": "",
229
- "allowInsecureRequest": false,
230
- "manufacturer": "NRCHKB",
231
- "model": "Demo",
232
- "serialNo": "1.1.2",
233
- "customMdnsConfig": false,
234
- "mdnsMulticast": true,
235
- "mdnsInterface": "",
236
- "mdnsPort": "",
237
- "mdnsIp": "",
238
- "mdnsTtl": "",
239
- "mdnsLoopback": true,
240
- "mdnsReuseAddr": true,
241
- "allowMessagePassthrough": true
242
- }
29
+ {
30
+ "id": "dadd634c.ae2258",
31
+ "type": "debug",
32
+ "z": "60b06629.a2ebd",
33
+ "g": "c869b0a5.e4def8",
34
+ "name": "Fan output",
35
+ "active": true,
36
+ "tosidebar": true,
37
+ "console": false,
38
+ "tostatus": false,
39
+ "complete": "payload",
40
+ "targetType": "msg",
41
+ "statusVal": "",
42
+ "statusType": "auto",
43
+ "x": 650,
44
+ "y": 1860,
45
+ "wires": []
46
+ },
47
+ {
48
+ "id": "753e3777.49a1d",
49
+ "type": "homekit-service",
50
+ "z": "60b06629.a2ebd",
51
+ "g": "c869b0a5.e4def8",
52
+ "isParent": true,
53
+ "bridge": "409001a1.3e7a78",
54
+ "parentService": "",
55
+ "name": "Fan Speeds",
56
+ "serviceName": "Fan",
57
+ "topic": "",
58
+ "filter": false,
59
+ "manufacturer": "Gman",
60
+ "model": "Default Model",
61
+ "serialNo": "CRX1",
62
+ "firmwareRev": "1.0.0",
63
+ "hardwareRev": "1.0.0",
64
+ "softwareRev": "1.0.0",
65
+ "cameraConfigVideoProcessor": "ffmpeg",
66
+ "cameraConfigSource": "",
67
+ "cameraConfigStillImageSource": "",
68
+ "cameraConfigMaxStreams": 2,
69
+ "cameraConfigMaxWidth": 1280,
70
+ "cameraConfigMaxHeight": 720,
71
+ "cameraConfigMaxFPS": 10,
72
+ "cameraConfigMaxBitrate": 300,
73
+ "cameraConfigVideoCodec": "libx264",
74
+ "cameraConfigAudioCodec": "libfdk_aac",
75
+ "cameraConfigAudio": false,
76
+ "cameraConfigPacketSize": 1316,
77
+ "cameraConfigVerticalFlip": false,
78
+ "cameraConfigHorizontalFlip": false,
79
+ "cameraConfigMapVideo": "0:0",
80
+ "cameraConfigMapAudio": "0:1",
81
+ "cameraConfigVideoFilter": "scale=1280:720",
82
+ "cameraConfigAdditionalCommandLine": "-tune zerolatency",
83
+ "cameraConfigDebug": false,
84
+ "cameraConfigSnapshotOutput": "disabled",
85
+ "cameraConfigInterfaceName": "",
86
+ "characteristicProperties": "{\n \"RotationSpeed\": {\n \"minValue\":0,\n \"maxValue\":99,\n \"minStep\":33\n }\n}",
87
+ "outputs": 2,
88
+ "x": 430,
89
+ "y": 1860,
90
+ "wires": [["dadd634c.ae2258"], []]
91
+ },
92
+ {
93
+ "id": "992f4930.012aa",
94
+ "type": "inject",
95
+ "z": "60b06629.a2ebd",
96
+ "g": "c869b0a5.e4def8",
97
+ "name": "NO RESPONSE",
98
+ "props": [
99
+ {
100
+ "p": "payload"
101
+ },
102
+ {
103
+ "p": "topic",
104
+ "vt": "str"
105
+ }
106
+ ],
107
+ "repeat": "",
108
+ "crontab": "",
109
+ "once": false,
110
+ "onceDelay": 0.1,
111
+ "topic": "",
112
+ "payload": "{\"On\":\"NO_RESPONSE\"}",
113
+ "payloadType": "json",
114
+ "x": 380,
115
+ "y": 1940,
116
+ "wires": [["753e3777.49a1d"]]
117
+ },
118
+ {
119
+ "id": "2497a466.aa0e84",
120
+ "type": "inject",
121
+ "z": "60b06629.a2ebd",
122
+ "g": "c869b0a5.e4def8",
123
+ "name": "OFF",
124
+ "props": [
125
+ {
126
+ "p": "payload"
127
+ },
128
+ {
129
+ "p": "topic",
130
+ "vt": "str"
131
+ }
132
+ ],
133
+ "repeat": "",
134
+ "crontab": "",
135
+ "once": false,
136
+ "onceDelay": 0.1,
137
+ "topic": "",
138
+ "payload": "{\"On\":false}",
139
+ "payloadType": "json",
140
+ "x": 110,
141
+ "y": 1860,
142
+ "wires": [["753e3777.49a1d"]]
143
+ },
144
+ {
145
+ "id": "c53b76fb.7a3cc8",
146
+ "type": "inject",
147
+ "z": "60b06629.a2ebd",
148
+ "g": "c869b0a5.e4def8",
149
+ "name": "Low",
150
+ "props": [
151
+ {
152
+ "p": "payload"
153
+ },
154
+ {
155
+ "p": "topic",
156
+ "vt": "str"
157
+ }
158
+ ],
159
+ "repeat": "",
160
+ "crontab": "",
161
+ "once": false,
162
+ "onceDelay": 0.1,
163
+ "topic": "",
164
+ "payload": "{\"On\":true,\"RotationSpeed\":33}",
165
+ "payloadType": "json",
166
+ "x": 110,
167
+ "y": 1900,
168
+ "wires": [["753e3777.49a1d"]]
169
+ },
170
+ {
171
+ "id": "6c9646ee.1f3a18",
172
+ "type": "inject",
173
+ "z": "60b06629.a2ebd",
174
+ "g": "c869b0a5.e4def8",
175
+ "name": "Medium",
176
+ "props": [
177
+ {
178
+ "p": "payload"
179
+ },
180
+ {
181
+ "p": "topic",
182
+ "vt": "str"
183
+ }
184
+ ],
185
+ "repeat": "",
186
+ "crontab": "",
187
+ "once": false,
188
+ "onceDelay": 0.1,
189
+ "topic": "",
190
+ "payload": "{\"On\":true,\"RotationSpeed\":66}",
191
+ "payloadType": "json",
192
+ "x": 120,
193
+ "y": 1940,
194
+ "wires": [["753e3777.49a1d"]]
195
+ },
196
+ {
197
+ "id": "1e42a8f3.cf008f",
198
+ "type": "inject",
199
+ "z": "60b06629.a2ebd",
200
+ "g": "c869b0a5.e4def8",
201
+ "name": "High",
202
+ "props": [
203
+ {
204
+ "p": "payload"
205
+ },
206
+ {
207
+ "p": "topic",
208
+ "vt": "str"
209
+ }
210
+ ],
211
+ "repeat": "",
212
+ "crontab": "",
213
+ "once": false,
214
+ "onceDelay": 0.1,
215
+ "topic": "",
216
+ "payload": "{\"On\":true,\"RotationSpeed\":99}",
217
+ "payloadType": "json",
218
+ "x": 110,
219
+ "y": 1980,
220
+ "wires": [["753e3777.49a1d"]]
221
+ },
222
+ {
223
+ "id": "409001a1.3e7a78",
224
+ "type": "homekit-bridge",
225
+ "z": "",
226
+ "bridgeName": "Demo 1",
227
+ "pinCode": "153-10-538",
228
+ "port": "",
229
+ "allowInsecureRequest": false,
230
+ "manufacturer": "NRCHKB",
231
+ "model": "Demo",
232
+ "serialNo": "1.1.2",
233
+ "customMdnsConfig": false,
234
+ "mdnsMulticast": true,
235
+ "mdnsInterface": "",
236
+ "mdnsPort": "",
237
+ "mdnsIp": "",
238
+ "mdnsTtl": "",
239
+ "mdnsLoopback": true,
240
+ "mdnsReuseAddr": true,
241
+ "allowMessagePassthrough": true
242
+ }
243
243
  ]