node-red-contrib-homekit-bridged 2.0.0-dev.1 → 2.0.0-dev.10
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/build/lib/HAPHostNode.js +185 -146
- package/build/lib/HAPServiceNode.js +200 -177
- package/build/lib/HAPServiceNode2.js +208 -177
- package/build/lib/NRCHKBError.js +23 -2
- package/build/lib/PairingQRCode.js +62 -0
- package/build/lib/Storage.js +152 -90
- package/build/lib/api.js +654 -290
- package/build/lib/camera/CameraControl.js +125 -0
- package/build/lib/camera/CameraDelegate.js +507 -0
- package/build/lib/camera/MP4StreamingServer.js +159 -0
- package/build/lib/hap/HAPCharacteristic.js +25 -4
- package/build/lib/hap/HAPService.js +25 -4
- package/build/lib/hap/eve-app/EveCharacteristics.js +124 -81
- package/build/lib/hap/eve-app/EveServices.js +50 -17
- package/build/lib/hap/hap-nodejs.js +32 -0
- package/build/lib/migration/HomeKitService2Migration.js +34 -0
- package/build/lib/migration/NodeMigration.js +75 -0
- package/build/lib/types/AccessoryInformationType.js +15 -1
- package/build/lib/types/CameraConfigType.js +15 -1
- package/build/lib/types/CustomCharacteristicType.js +15 -1
- package/build/lib/types/HAPHostConfigType.js +15 -1
- package/build/lib/types/HAPHostNodeType.js +15 -1
- package/build/lib/types/HAPService2ConfigType.js +15 -1
- package/build/lib/types/HAPService2NodeType.js +15 -1
- package/build/lib/types/HAPServiceConfigType.js +15 -1
- package/build/lib/types/HAPServiceNodeType.js +15 -1
- package/build/lib/types/HAPStatusConfigType.js +15 -1
- package/build/lib/types/HAPStatusNodeType.js +15 -1
- package/build/lib/types/HostType.js +28 -7
- package/build/lib/types/NodeType.js +15 -1
- package/build/lib/types/PublishTimersType.js +15 -1
- package/build/lib/types/UniFiControllerConfigType.js +16 -0
- package/build/lib/types/hap-nodejs/HapAdaptiveLightingControllerMode.js +28 -7
- package/build/lib/types/hap-nodejs/HapCategories.js +64 -43
- package/build/lib/types/storage/SerializedHostType.js +15 -1
- package/build/lib/types/storage/StorageType.js +34 -10
- package/build/lib/unifi/ProtectDiscovery.js +80 -0
- package/build/lib/utils/AccessoryUtils.js +152 -112
- package/build/lib/utils/BridgeUtils.js +95 -39
- package/build/lib/utils/CharacteristicUtils.js +5 -49
- package/build/lib/utils/CharacteristicUtils2.js +5 -49
- package/build/lib/utils/CharacteristicUtilsBase.js +81 -0
- package/build/lib/utils/NodeStatusUtils.js +89 -40
- package/build/lib/utils/ServiceUtils.js +433 -368
- package/build/lib/utils/ServiceUtils2.js +519 -304
- package/build/lib/utils/index.js +11 -12
- package/build/nodes/bridge.html +206 -168
- package/build/nodes/bridge.js +27 -9
- package/build/nodes/locales/en-US/node-red-contrib-homekit-bridged.json +22 -0
- package/build/nodes/nrchkb.html +1753 -117
- package/build/nodes/nrchkb.js +66 -88
- package/build/nodes/plugin-instance.html +509 -0
- package/build/nodes/plugin-instance.js +46 -0
- package/build/nodes/service.html +557 -306
- package/build/nodes/service.js +5 -6
- package/build/nodes/service2.html +1735 -455
- package/build/nodes/service2.js +5 -8
- package/build/nodes/standalone.html +208 -176
- package/build/nodes/standalone.js +27 -9
- package/build/nodes/status.html +51 -18
- package/build/nodes/status.js +47 -41
- package/build/nodes/unifi-controller.html +92 -0
- package/build/nodes/unifi-controller.js +20 -0
- package/build/plugins/embedded/homebridge-camera-ffmpeg/index.js +479 -0
- package/build/plugins/embedded/homebridge-unifi-protect/index.js +521 -0
- package/build/plugins/embedded/index.js +58 -0
- package/build/plugins/nrchkb-homekit-plugins.js +17 -0
- package/build/plugins/registry/index.js +203 -0
- package/build/plugins/registry/types.js +16 -0
- package/build/scripts/migrate-homekit-service-flows.js +47 -0
- package/examples/demo/01 - ALL Demos single import.json +1885 -1885
- package/examples/demo/02 - Air Purifier.json +279 -279
- package/examples/demo/03 - Air Quality sensor with Battery.json +254 -254
- package/examples/demo/04 - Dimmable Bulb.json +172 -172
- package/examples/demo/05 - Color Bulb (HSV).json +195 -195
- package/examples/demo/06 - Fan (simple, 3 speeds).json +240 -240
- package/examples/demo/07 - Fan (with speed, oscillate, rotation direction).json +175 -175
- package/examples/demo/08 - CO2 detector.json +224 -224
- package/examples/demo/09 - CO (carbon monoxide) example.json +255 -255
- package/examples/demo/10 - Door window contact sensor.json +234 -234
- package/examples/demos (advanced)/01 - Television with inputs and speaker.json +541 -541
- package/examples/switch/01 - Plain Switch.json +178 -178
- package/package.json +95 -82
- package/build/lib/HAPHostNode.d.ts +0 -1
- package/build/lib/HAPServiceNode.d.ts +0 -1
- package/build/lib/HAPServiceNode2.d.ts +0 -1
- package/build/lib/NRCHKBError.d.ts +0 -3
- package/build/lib/Storage.d.ts +0 -30
- package/build/lib/api.d.ts +0 -1
- package/build/lib/hap/HAPCharacteristic.d.ts +0 -9
- package/build/lib/hap/HAPService.d.ts +0 -6
- package/build/lib/hap/eve-app/EveCharacteristics.d.ts +0 -20
- package/build/lib/hap/eve-app/EveServices.d.ts +0 -5
- package/build/lib/types/AccessoryInformationType.d.ts +0 -11
- package/build/lib/types/CameraConfigType.d.ts +0 -24
- package/build/lib/types/CustomCharacteristicType.d.ts +0 -6
- package/build/lib/types/HAPHostConfigType.d.ts +0 -22
- package/build/lib/types/HAPHostNodeType.d.ts +0 -14
- package/build/lib/types/HAPService2ConfigType.d.ts +0 -6
- package/build/lib/types/HAPService2NodeType.d.ts +0 -7
- package/build/lib/types/HAPServiceConfigType.d.ts +0 -26
- package/build/lib/types/HAPServiceNodeType.d.ts +0 -38
- package/build/lib/types/HAPStatusConfigType.d.ts +0 -5
- package/build/lib/types/HAPStatusNodeType.d.ts +0 -12
- package/build/lib/types/HostType.d.ts +0 -5
- package/build/lib/types/NodeType.d.ts +0 -3
- package/build/lib/types/PublishTimersType.d.ts +0 -4
- package/build/lib/types/hap-nodejs/HapAdaptiveLightingControllerMode.d.ts +0 -5
- package/build/lib/types/hap-nodejs/HapCategories.d.ts +0 -41
- package/build/lib/types/storage/SerializedHostType.d.ts +0 -5
- package/build/lib/types/storage/StorageType.d.ts +0 -8
- package/build/lib/utils/AccessoryUtils.d.ts +0 -1
- package/build/lib/utils/BridgeUtils.d.ts +0 -1
- package/build/lib/utils/CharacteristicUtils.d.ts +0 -1
- package/build/lib/utils/CharacteristicUtils2.d.ts +0 -1
- package/build/lib/utils/NodeStatusUtils.d.ts +0 -17
- package/build/lib/utils/ServiceUtils.d.ts +0 -1
- package/build/lib/utils/ServiceUtils2.d.ts +0 -1
- package/build/lib/utils/index.d.ts +0 -1
- package/build/nodes/bridge.d.ts +0 -1
- package/build/nodes/nrchkb.d.ts +0 -1
- package/build/nodes/service.d.ts +0 -1
- package/build/nodes/service2.d.ts +0 -1
- package/build/nodes/standalone.d.ts +0 -1
- package/build/nodes/status.d.ts +0 -1
|
@@ -1,175 +1,175 @@
|
|
|
1
1
|
[
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
2
|
+
{
|
|
3
|
+
"id": "3a57bebe.a3b222",
|
|
4
|
+
"type": "group",
|
|
5
|
+
"z": "60b06629.a2ebd",
|
|
6
|
+
"name": "Dimmable Bulb: 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
|
+
"459254fe.49c72c",
|
|
16
|
+
"379657db.a99df8",
|
|
17
|
+
"52a07047.03ce7",
|
|
18
|
+
"253b3550.729caa",
|
|
19
|
+
"b9bc7f3d.51acf"
|
|
20
|
+
],
|
|
21
|
+
"x": 14,
|
|
22
|
+
"y": 519,
|
|
23
|
+
"w": 752,
|
|
24
|
+
"h": 122,
|
|
25
|
+
"info": "# Dimmable Bulb\n\nThis is a dimmable bulb. The Characteristic Properties enable brightness. It is a white bulb which can be adjusted from 0 to 100% brightness."
|
|
13
26
|
},
|
|
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
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
"manufacturer": "NRCHKB",
|
|
163
|
-
"model": "Demo",
|
|
164
|
-
"serialNo": "1.1.2",
|
|
165
|
-
"customMdnsConfig": false,
|
|
166
|
-
"mdnsMulticast": true,
|
|
167
|
-
"mdnsInterface": "",
|
|
168
|
-
"mdnsPort": "",
|
|
169
|
-
"mdnsIp": "",
|
|
170
|
-
"mdnsTtl": "",
|
|
171
|
-
"mdnsLoopback": true,
|
|
172
|
-
"mdnsReuseAddr": true,
|
|
173
|
-
"allowMessagePassthrough": true
|
|
174
|
-
}
|
|
27
|
+
{
|
|
28
|
+
"id": "459254fe.49c72c",
|
|
29
|
+
"type": "homekit-service",
|
|
30
|
+
"z": "60b06629.a2ebd",
|
|
31
|
+
"g": "3a57bebe.a3b222",
|
|
32
|
+
"isParent": true,
|
|
33
|
+
"bridge": "409001a1.3e7a78",
|
|
34
|
+
"parentService": "",
|
|
35
|
+
"name": "Dimmable",
|
|
36
|
+
"serviceName": "Lightbulb",
|
|
37
|
+
"topic": "",
|
|
38
|
+
"filter": false,
|
|
39
|
+
"manufacturer": "Garrett",
|
|
40
|
+
"model": "Dummy",
|
|
41
|
+
"serialNo": "Default Serial Number",
|
|
42
|
+
"firmwareRev": "1.1.9",
|
|
43
|
+
"hardwareRev": "1.0.0",
|
|
44
|
+
"softwareRev": "1.0.0",
|
|
45
|
+
"cameraConfigVideoProcessor": "ffmpeg",
|
|
46
|
+
"cameraConfigSource": "",
|
|
47
|
+
"cameraConfigStillImageSource": "",
|
|
48
|
+
"cameraConfigMaxStreams": 2,
|
|
49
|
+
"cameraConfigMaxWidth": 1280,
|
|
50
|
+
"cameraConfigMaxHeight": 720,
|
|
51
|
+
"cameraConfigMaxFPS": 10,
|
|
52
|
+
"cameraConfigMaxBitrate": 300,
|
|
53
|
+
"cameraConfigVideoCodec": "libx264",
|
|
54
|
+
"cameraConfigAudioCodec": "libfdk_aac",
|
|
55
|
+
"cameraConfigAudio": false,
|
|
56
|
+
"cameraConfigPacketSize": 1316,
|
|
57
|
+
"cameraConfigVerticalFlip": false,
|
|
58
|
+
"cameraConfigHorizontalFlip": false,
|
|
59
|
+
"cameraConfigMapVideo": "0:0",
|
|
60
|
+
"cameraConfigMapAudio": "0:1",
|
|
61
|
+
"cameraConfigVideoFilter": "scale=1280:720",
|
|
62
|
+
"cameraConfigAdditionalCommandLine": "-tune zerolatency",
|
|
63
|
+
"cameraConfigDebug": false,
|
|
64
|
+
"cameraConfigSnapshotOutput": "disabled",
|
|
65
|
+
"cameraConfigInterfaceName": "",
|
|
66
|
+
"characteristicProperties": "{\n \"Brightness\":true\n}",
|
|
67
|
+
"outputs": 2,
|
|
68
|
+
"x": 380,
|
|
69
|
+
"y": 600,
|
|
70
|
+
"wires": [["379657db.a99df8"], []]
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"id": "379657db.a99df8",
|
|
74
|
+
"type": "debug",
|
|
75
|
+
"z": "60b06629.a2ebd",
|
|
76
|
+
"g": "3a57bebe.a3b222",
|
|
77
|
+
"name": "Dimmable light output",
|
|
78
|
+
"active": true,
|
|
79
|
+
"tosidebar": true,
|
|
80
|
+
"console": false,
|
|
81
|
+
"tostatus": false,
|
|
82
|
+
"complete": "payload",
|
|
83
|
+
"targetType": "msg",
|
|
84
|
+
"x": 620,
|
|
85
|
+
"y": 600,
|
|
86
|
+
"wires": []
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"id": "52a07047.03ce7",
|
|
90
|
+
"type": "inject",
|
|
91
|
+
"z": "60b06629.a2ebd",
|
|
92
|
+
"g": "3a57bebe.a3b222",
|
|
93
|
+
"name": "NO RESPONSE",
|
|
94
|
+
"props": [
|
|
95
|
+
{
|
|
96
|
+
"p": "payload"
|
|
97
|
+
}
|
|
98
|
+
],
|
|
99
|
+
"repeat": "",
|
|
100
|
+
"crontab": "",
|
|
101
|
+
"once": false,
|
|
102
|
+
"onceDelay": 0.1,
|
|
103
|
+
"topic": "",
|
|
104
|
+
"payload": "{\"On\":\"NO_RESPONSE\"}",
|
|
105
|
+
"payloadType": "json",
|
|
106
|
+
"x": 320,
|
|
107
|
+
"y": 560,
|
|
108
|
+
"wires": [["459254fe.49c72c"]]
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
"id": "253b3550.729caa",
|
|
112
|
+
"type": "inject",
|
|
113
|
+
"z": "60b06629.a2ebd",
|
|
114
|
+
"g": "3a57bebe.a3b222",
|
|
115
|
+
"name": "ON",
|
|
116
|
+
"props": [
|
|
117
|
+
{
|
|
118
|
+
"p": "payload"
|
|
119
|
+
}
|
|
120
|
+
],
|
|
121
|
+
"repeat": "",
|
|
122
|
+
"crontab": "",
|
|
123
|
+
"once": false,
|
|
124
|
+
"onceDelay": 0.1,
|
|
125
|
+
"topic": "",
|
|
126
|
+
"payload": "{\"On\":true}",
|
|
127
|
+
"payloadType": "json",
|
|
128
|
+
"x": 110,
|
|
129
|
+
"y": 560,
|
|
130
|
+
"wires": [["459254fe.49c72c"]]
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"id": "b9bc7f3d.51acf",
|
|
134
|
+
"type": "inject",
|
|
135
|
+
"z": "60b06629.a2ebd",
|
|
136
|
+
"g": "3a57bebe.a3b222",
|
|
137
|
+
"name": "OFF",
|
|
138
|
+
"props": [
|
|
139
|
+
{
|
|
140
|
+
"p": "payload"
|
|
141
|
+
}
|
|
142
|
+
],
|
|
143
|
+
"repeat": "",
|
|
144
|
+
"crontab": "",
|
|
145
|
+
"once": false,
|
|
146
|
+
"onceDelay": 0.1,
|
|
147
|
+
"topic": "",
|
|
148
|
+
"payload": "{\"On\":false}",
|
|
149
|
+
"payloadType": "json",
|
|
150
|
+
"x": 110,
|
|
151
|
+
"y": 600,
|
|
152
|
+
"wires": [["459254fe.49c72c"]]
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
"id": "409001a1.3e7a78",
|
|
156
|
+
"type": "homekit-bridge",
|
|
157
|
+
"z": "",
|
|
158
|
+
"bridgeName": "Demo 1",
|
|
159
|
+
"pinCode": "153-10-538",
|
|
160
|
+
"port": "",
|
|
161
|
+
"allowInsecureRequest": false,
|
|
162
|
+
"manufacturer": "NRCHKB",
|
|
163
|
+
"model": "Demo",
|
|
164
|
+
"serialNo": "1.1.2",
|
|
165
|
+
"customMdnsConfig": false,
|
|
166
|
+
"mdnsMulticast": true,
|
|
167
|
+
"mdnsInterface": "",
|
|
168
|
+
"mdnsPort": "",
|
|
169
|
+
"mdnsIp": "",
|
|
170
|
+
"mdnsTtl": "",
|
|
171
|
+
"mdnsLoopback": true,
|
|
172
|
+
"mdnsReuseAddr": true,
|
|
173
|
+
"allowMessagePassthrough": true
|
|
174
|
+
}
|
|
175
175
|
]
|