node-red-contrib-homebridge-automation 0.2.2-beta.5 → 0.3.0-beta.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,18 +2,65 @@
2
2
  const { HapClient } = require('@homebridge/hap-client');
3
3
  const HBConfigNode = require('./hbConfigNode'); // Update the path as necessary
4
4
 
5
- jest.mock('@homebridge/hap-client');
5
+ jest.mock('@homebridge/hap-client', () => {
6
+ return {
7
+ HapClient: jest.fn().mockImplementation(() => ({
8
+ getAllServices: jest.fn(), // Will be set per test case
9
+ on: jest.fn(), // Mock event listeners
10
+ removeListener: jest.fn(),
11
+ connect: jest.fn().mockResolvedValue(true),
12
+ disconnect: jest.fn(),
13
+ })),
14
+ };
15
+ });
16
+
17
+ describe.skip('Issue 142', () => {
18
+ let mockConfig;
19
+ let RED;
20
+ let node;
21
+ let mockHapClient;
22
+
23
+ beforeEach(() => {
24
+ mockConfig = {
25
+ username: '123-45-678',
26
+ macAddress: '00:11:22:33:44:55',
27
+ };
28
+
29
+ RED = {
30
+ nodes: {
31
+ createNode: jest.fn(),
32
+ },
33
+ };
34
+
35
+ node = new HBConfigNode(mockConfig, RED);
36
+ node.debug = true;
37
+ node.warn = console.log;
38
+ node.log = console.log;
39
+ });
40
+
41
+ test('Validate Issue 142 fix', async () => {
42
+ node.hapClient.getAllServices.mockResolvedValue(testhbDevicesIssue142);
43
+ await node.handleReady();
44
+ const result = node.toList({ perms: 'ev' });
45
+ expect(result).toEqual(testhbDevicesResultIssue142);
46
+
47
+ // Ensure the unsupported type was filtered out
48
+ expect(result.find(device => device.name === 'Garage Sensor')).toBeUndefined();
49
+ expect(result.find(device => device.name === 'Kitchen Curtain')).toBeDefined();
50
+ expect(result.find(device => device.name === 'Livingroom Curtain')).toBeDefined();
51
+ });
52
+ });
6
53
 
7
54
  describe('HBConfigNode', () => {
8
55
  let mockConfig;
9
56
  let RED;
10
57
  let node;
58
+ let mockHapClient;
11
59
 
12
60
  beforeEach(() => {
13
61
  mockConfig = {
14
62
  username: '123-45-678',
15
63
  macAddress: '00:11:22:33:44:55',
16
- jest: true,
17
64
  };
18
65
 
19
66
  RED = {
@@ -23,2113 +70,2231 @@ describe('HBConfigNode', () => {
23
70
  };
24
71
 
25
72
  node = new HBConfigNode(mockConfig, RED);
26
- node.hbDevices = [
73
+ node.debug = true;
74
+ node.warn = console.log;
75
+ node.log = console.log;
76
+ });
77
+
78
+ test('Retrieve devices', async () => {
79
+ node.hapClient.getAllServices.mockResolvedValue(testhbDevices);
80
+ console.log('testhbDevices', testhbDevices);
81
+ await node.handleReady();
82
+ const result = node.toList({ perms: 'ev' });
83
+ expect(result).toEqual(testhbDevicesResult);
84
+
85
+ // Ensure the unsupported type was filtered out
86
+ expect(result.find(device => device.name === 'Garage Sensor')).toBeUndefined();
87
+ expect(result.find(device => device.name === 'Kitchen Curtain')).toBeDefined();
88
+ expect(result.find(device => device.name === 'Livingroom Curtain')).toBeDefined();
89
+ });
90
+
91
+ test.skip('toList filters and maps camera devices correctly', () => {
92
+ const result = node.toList({ perms: 'ev' });
93
+ expect(result).toEqual(testhbDevicesResult);
94
+
95
+ // Ensure the unsupported type was filtered out
96
+ expect(result.find(device => device.name === 'Garage Sensor')).toBeUndefined();
97
+ });
98
+ });
99
+
100
+ // Test Data
101
+
102
+ const testhbDevices = [
103
+ {
104
+ humanType: 'UnknownType', // This should be filtered out
105
+ serviceName: 'Garage Sensor',
106
+ type: 'Sensor',
107
+ instance: {
108
+ name: 'Bridge3',
109
+ username: '22:33:44:55:66:77',
110
+ },
111
+ accessoryInformation: {
112
+ Manufacturer: 'Acme',
113
+ },
114
+ uuid: '11223344-5566-7788-99aa-bbccddeeff00',
115
+ },
116
+ {
117
+ "aid": 1,
118
+ "iid": 54,
119
+ "uuid": "000000A2-0000-1000-8000-0026BB765291",
120
+ "type": "ProtocolInformation",
121
+ "humanType": "Protocol Information",
122
+ "serviceName": "Deck 6EED",
123
+ "serviceCharacteristics": [
124
+ {
125
+ "aid": 1,
126
+ "iid": 55,
127
+ "uuid": "00000037-0000-1000-8000-0026BB765291",
128
+ "type": "Version",
129
+ "serviceType": "ProtocolInformation",
130
+ "serviceName": "Deck 6EED",
131
+ "description": "Version",
132
+ "value": "1.1.0",
133
+ "format": "string",
134
+ "perms": [
135
+ "pr"
136
+ ],
137
+ "canRead": true,
138
+ "canWrite": false,
139
+ "ev": false
140
+ }
141
+ ],
142
+ "accessoryInformation": {
143
+ "Manufacturer": "HikVision",
144
+ "Model": "ECI-T24F2",
145
+ "Name": "Deck 6EED",
146
+ "Serial Number": "Default-SerialNumber",
147
+ "Firmware Revision": "0.0.0"
148
+ },
149
+ "values": {
150
+ "Version": "1.1.0"
151
+ },
152
+ "instance": {
153
+ "name": "ECI-T24F2",
154
+ "username": "8E:88:AB:7A:D0:54",
155
+ "ipAddress": "192.168.1.11",
156
+ "port": 33811,
157
+ "services": [],
158
+ "connectionFailedCount": 0,
159
+ "configurationNumber": "3"
160
+ },
161
+ "uniqueId": "df9f624e673eae7295adbddf6178e854c11245b7e76303550fc4b288058872ae"
162
+ },
163
+ {
164
+ "aid": 1,
165
+ "iid": 8,
166
+ "uuid": "00000085-0000-1000-8000-0026BB765291",
167
+ "type": "MotionSensor",
168
+ "humanType": "Motion Sensor",
169
+ "serviceName": "Canoe",
170
+ "serviceCharacteristics": [
171
+ {
172
+ "aid": 1,
173
+ "iid": 10,
174
+ "uuid": "00000022-0000-1000-8000-0026BB765291",
175
+ "type": "MotionDetected",
176
+ "serviceType": "MotionSensor",
177
+ "serviceName": "Canoe",
178
+ "description": "Motion Detected",
179
+ "value": 0,
180
+ "format": "bool",
181
+ "perms": [
182
+ "ev",
183
+ "pr"
184
+ ],
185
+ "canRead": true,
186
+ "canWrite": false,
187
+ "ev": true
188
+ }
189
+ ],
190
+ "accessoryInformation": {
191
+ "Manufacturer": "HikVision",
192
+ "Model": "ECI-T24F2",
193
+ "Name": "Canoe 5036",
194
+ "Serial Number": "Default-SerialNumber",
195
+ "Firmware Revision": "0.0.0"
196
+ },
197
+ "values": {
198
+ "MotionDetected": 0
199
+ },
200
+ "instance": {
201
+ "name": "ECI-T24F2",
202
+ "username": "5C:EE:FE:4D:64:B4",
203
+ "ipAddress": "192.168.1.11",
204
+ "port": 39757,
205
+ "services": [],
206
+ "connectionFailedCount": 0,
207
+ "configurationNumber": "3"
208
+ },
209
+ "uniqueId": "10dbaceb026b81f56c6226eca2c30b7ba06c29de632253972402bd3f489096f1"
210
+ },
211
+ {
212
+ "aid": 1,
213
+ "iid": 14,
214
+ "uuid": "00000110-0000-1000-8000-0026BB765291",
215
+ "type": "CameraRTPStreamManagement",
216
+ "humanType": "Camera Rtp Stream Management",
217
+ "serviceName": "Canoe 5036",
218
+ "serviceCharacteristics": [
27
219
  {
28
- humanType: 'UnknownType', // This should be filtered out
29
- serviceName: 'Garage Sensor',
30
- type: 'Sensor',
31
- instance: {
32
- name: 'Bridge3',
33
- username: '22:33:44:55:66:77',
34
- },
35
- accessoryInformation: {
36
- Manufacturer: 'Acme',
37
- },
38
- uuid: '11223344-5566-7788-99aa-bbccddeeff00',
220
+ "aid": 1,
221
+ "iid": 17,
222
+ "uuid": "00000120-0000-1000-8000-0026BB765291",
223
+ "type": "StreamingStatus",
224
+ "serviceType": "CameraRTPStreamManagement",
225
+ "serviceName": "Canoe 5036",
226
+ "description": "Streaming Status",
227
+ "value": "AQEA",
228
+ "format": "tlv8",
229
+ "perms": [
230
+ "ev",
231
+ "pr"
232
+ ],
233
+ "canRead": true,
234
+ "canWrite": false,
235
+ "ev": true
39
236
  },
40
237
  {
41
238
  "aid": 1,
42
- "iid": 54,
43
- "uuid": "000000A2-0000-1000-8000-0026BB765291",
44
- "type": "ProtocolInformation",
45
- "humanType": "Protocol Information",
46
- "serviceName": "Deck 6EED",
47
- "serviceCharacteristics": [
48
- {
49
- "aid": 1,
50
- "iid": 55,
51
- "uuid": "00000037-0000-1000-8000-0026BB765291",
52
- "type": "Version",
53
- "serviceType": "ProtocolInformation",
54
- "serviceName": "Deck 6EED",
55
- "description": "Version",
56
- "value": "1.1.0",
57
- "format": "string",
58
- "perms": [
59
- "pr"
60
- ],
61
- "canRead": true,
62
- "canWrite": false,
63
- "ev": false
64
- }
65
- ],
66
- "accessoryInformation": {
67
- "Manufacturer": "HikVision",
68
- "Model": "ECI-T24F2",
69
- "Name": "Deck 6EED",
70
- "Serial Number": "Default-SerialNumber",
71
- "Firmware Revision": "0.0.0"
72
- },
73
- "values": {
74
- "Version": "1.1.0"
75
- },
76
- "instance": {
77
- "name": "ECI-T24F2",
78
- "username": "8E:88:AB:7A:D0:54",
79
- "ipAddress": "192.168.1.11",
80
- "port": 33811,
81
- "services": [],
82
- "connectionFailedCount": 0,
83
- "configurationNumber": "3"
84
- },
85
- "uniqueId": "df9f624e673eae7295adbddf6178e854c11245b7e76303550fc4b288058872ae"
239
+ "iid": 18,
240
+ "uuid": "00000115-0000-1000-8000-0026BB765291",
241
+ "type": "SupportedAudioStreamConfiguration",
242
+ "serviceType": "CameraRTPStreamManagement",
243
+ "serviceName": "Canoe 5036",
244
+ "description": "Supported Audio Stream Configuration",
245
+ "value": "AQ4BAQMCCQEBAQIBAAMBAgAAAQ4BAQICCQEBAQIBAAMBAQIBAA==",
246
+ "format": "tlv8",
247
+ "perms": [
248
+ "pr"
249
+ ],
250
+ "canRead": true,
251
+ "canWrite": false,
252
+ "ev": false
86
253
  },
87
254
  {
88
255
  "aid": 1,
89
- "iid": 8,
90
- "uuid": "00000085-0000-1000-8000-0026BB765291",
91
- "type": "MotionSensor",
92
- "humanType": "Motion Sensor",
93
- "serviceName": "Canoe",
94
- "serviceCharacteristics": [
95
- {
96
- "aid": 1,
97
- "iid": 10,
98
- "uuid": "00000022-0000-1000-8000-0026BB765291",
99
- "type": "MotionDetected",
100
- "serviceType": "MotionSensor",
101
- "serviceName": "Canoe",
102
- "description": "Motion Detected",
103
- "value": 0,
104
- "format": "bool",
105
- "perms": [
106
- "ev",
107
- "pr"
108
- ],
109
- "canRead": true,
110
- "canWrite": false,
111
- "ev": true
112
- }
113
- ],
114
- "accessoryInformation": {
115
- "Manufacturer": "HikVision",
116
- "Model": "ECI-T24F2",
117
- "Name": "Canoe 5036",
118
- "Serial Number": "Default-SerialNumber",
119
- "Firmware Revision": "0.0.0"
120
- },
121
- "values": {
122
- "MotionDetected": 0
123
- },
124
- "instance": {
125
- "name": "ECI-T24F2",
126
- "username": "5C:EE:FE:4D:64:B4",
127
- "ipAddress": "192.168.1.11",
128
- "port": 39757,
129
- "services": [],
130
- "connectionFailedCount": 0,
131
- "configurationNumber": "3"
132
- },
133
- "uniqueId": "10dbaceb026b81f56c6226eca2c30b7ba06c29de632253972402bd3f489096f1"
256
+ "iid": 19,
257
+ "uuid": "00000116-0000-1000-8000-0026BB765291",
258
+ "type": "SupportedRTPConfiguration",
259
+ "serviceType": "CameraRTPStreamManagement",
260
+ "serviceName": "Canoe 5036",
261
+ "description": "Supported RTP Configuration",
262
+ "value": "AgEA",
263
+ "format": "tlv8",
264
+ "perms": [
265
+ "pr"
266
+ ],
267
+ "canRead": true,
268
+ "canWrite": false,
269
+ "ev": false
134
270
  },
135
271
  {
136
272
  "aid": 1,
137
- "iid": 14,
138
- "uuid": "00000110-0000-1000-8000-0026BB765291",
139
- "type": "CameraRTPStreamManagement",
140
- "humanType": "Camera Rtp Stream Management",
273
+ "iid": 20,
274
+ "uuid": "00000114-0000-1000-8000-0026BB765291",
275
+ "type": "SupportedVideoStreamConfiguration",
276
+ "serviceType": "CameraRTPStreamManagement",
141
277
  "serviceName": "Canoe 5036",
142
- "serviceCharacteristics": [
143
- {
144
- "aid": 1,
145
- "iid": 17,
146
- "uuid": "00000120-0000-1000-8000-0026BB765291",
147
- "type": "StreamingStatus",
148
- "serviceType": "CameraRTPStreamManagement",
149
- "serviceName": "Canoe 5036",
150
- "description": "Streaming Status",
151
- "value": "AQEA",
152
- "format": "tlv8",
153
- "perms": [
154
- "ev",
155
- "pr"
156
- ],
157
- "canRead": true,
158
- "canWrite": false,
159
- "ev": true
160
- },
161
- {
162
- "aid": 1,
163
- "iid": 18,
164
- "uuid": "00000115-0000-1000-8000-0026BB765291",
165
- "type": "SupportedAudioStreamConfiguration",
166
- "serviceType": "CameraRTPStreamManagement",
167
- "serviceName": "Canoe 5036",
168
- "description": "Supported Audio Stream Configuration",
169
- "value": "AQ4BAQMCCQEBAQIBAAMBAgAAAQ4BAQICCQEBAQIBAAMBAQIBAA==",
170
- "format": "tlv8",
171
- "perms": [
172
- "pr"
173
- ],
174
- "canRead": true,
175
- "canWrite": false,
176
- "ev": false
177
- },
178
- {
179
- "aid": 1,
180
- "iid": 19,
181
- "uuid": "00000116-0000-1000-8000-0026BB765291",
182
- "type": "SupportedRTPConfiguration",
183
- "serviceType": "CameraRTPStreamManagement",
184
- "serviceName": "Canoe 5036",
185
- "description": "Supported RTP Configuration",
186
- "value": "AgEA",
187
- "format": "tlv8",
188
- "perms": [
189
- "pr"
190
- ],
191
- "canRead": true,
192
- "canWrite": false,
193
- "ev": false
194
- },
195
- {
196
- "aid": 1,
197
- "iid": 20,
198
- "uuid": "00000114-0000-1000-8000-0026BB765291",
199
- "type": "SupportedVideoStreamConfiguration",
200
- "serviceType": "CameraRTPStreamManagement",
201
- "serviceName": "Canoe 5036",
202
- "description": "Supported Video Stream Configuration",
203
- "value": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
204
- "format": "tlv8",
205
- "perms": [
206
- "pr"
207
- ],
208
- "canRead": true,
209
- "canWrite": false,
210
- "ev": false
211
- },
212
- {
213
- "aid": 1,
214
- "iid": 21,
215
- "uuid": "000000B0-0000-1000-8000-0026BB765291",
216
- "type": "Active",
217
- "serviceType": "CameraRTPStreamManagement",
218
- "serviceName": "Canoe 5036",
219
- "description": "Active",
220
- "value": 1,
221
- "format": "uint8",
222
- "perms": [
223
- "ev",
224
- "pr",
225
- "pw"
226
- ],
227
- "maxValue": 1,
228
- "minValue": 0,
229
- "minStep": 1,
230
- "canRead": true,
231
- "canWrite": true,
232
- "ev": true
233
- },
234
- {
235
- "aid": 1,
236
- "iid": 15,
237
- "uuid": "00000117-0000-1000-8000-0026BB765291",
238
- "type": "SelectedRTPStreamConfiguration",
239
- "serviceType": "CameraRTPStreamManagement",
240
- "serviceName": "Canoe 5036",
241
- "description": "Selected RTP Stream Configuration",
242
- "value": "AQMCAQI=",
243
- "format": "tlv8",
244
- "perms": [
245
- "pr",
246
- "pw"
247
- ],
248
- "canRead": true,
249
- "canWrite": true,
250
- "ev": false
251
- },
252
- {
253
- "aid": 1,
254
- "iid": 16,
255
- "uuid": "00000118-0000-1000-8000-0026BB765291",
256
- "type": "SetupEndpoints",
257
- "serviceType": "CameraRTPStreamManagement",
258
- "serviceName": "Canoe 5036",
259
- "description": "Setup Endpoints",
260
- "value": "AgEC",
261
- "format": "tlv8",
262
- "perms": [
263
- "pr",
264
- "pw"
265
- ],
266
- "canRead": true,
267
- "canWrite": true,
268
- "ev": false
269
- }
270
- ],
271
- "accessoryInformation": {
272
- "Manufacturer": "HikVision",
273
- "Model": "ECI-T24F2",
274
- "Name": "Canoe 5036",
275
- "Serial Number": "Default-SerialNumber",
276
- "Firmware Revision": "0.0.0"
277
- },
278
- "values": {
279
- "StreamingStatus": "AQEA",
280
- "SupportedAudioStreamConfiguration": "AQ4BAQMCCQEBAQIBAAMBAgAAAQ4BAQICCQEBAQIBAAMBAQIBAA==",
281
- "SupportedRTPConfiguration": "AgEA",
282
- "SupportedVideoStreamConfiguration": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
283
- "Active": 1,
284
- "SelectedRTPStreamConfiguration": "AQMCAQI=",
285
- "SetupEndpoints": "AgEC"
286
- },
287
- "instance": {
288
- "name": "ECI-T24F2",
289
- "username": "5C:EE:FE:4D:64:B4",
290
- "ipAddress": "192.168.1.11",
291
- "port": 39757,
292
- "services": [],
293
- "connectionFailedCount": 0,
294
- "configurationNumber": "3"
295
- },
296
- "uniqueId": "9959f43e6f32e451a9c13e0c028d863fa148c39cbbcb57f93d8d825fc31f8865"
278
+ "description": "Supported Video Stream Configuration",
279
+ "value": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
280
+ "format": "tlv8",
281
+ "perms": [
282
+ "pr"
283
+ ],
284
+ "canRead": true,
285
+ "canWrite": false,
286
+ "ev": false
297
287
  },
298
288
  {
299
289
  "aid": 1,
300
- "iid": 22,
301
- "uuid": "00000110-0000-1000-8000-0026BB765291",
302
- "type": "CameraRTPStreamManagement",
303
- "humanType": "Camera Rtp Stream Management",
290
+ "iid": 21,
291
+ "uuid": "000000B0-0000-1000-8000-0026BB765291",
292
+ "type": "Active",
293
+ "serviceType": "CameraRTPStreamManagement",
304
294
  "serviceName": "Canoe 5036",
305
- "serviceCharacteristics": [
306
- {
307
- "aid": 1,
308
- "iid": 25,
309
- "uuid": "00000120-0000-1000-8000-0026BB765291",
310
- "type": "StreamingStatus",
311
- "serviceType": "CameraRTPStreamManagement",
312
- "serviceName": "Canoe 5036",
313
- "description": "Streaming Status",
314
- "value": "AQEA",
315
- "format": "tlv8",
316
- "perms": [
317
- "ev",
318
- "pr"
319
- ],
320
- "canRead": true,
321
- "canWrite": false,
322
- "ev": true
323
- },
324
- {
325
- "aid": 1,
326
- "iid": 26,
327
- "uuid": "00000115-0000-1000-8000-0026BB765291",
328
- "type": "SupportedAudioStreamConfiguration",
329
- "serviceType": "CameraRTPStreamManagement",
330
- "serviceName": "Canoe 5036",
331
- "description": "Supported Audio Stream Configuration",
332
- "value": "AQ4BAQMCCQEBAQIBAAMBAgAAAQ4BAQICCQEBAQIBAAMBAQIBAA==",
333
- "format": "tlv8",
334
- "perms": [
335
- "pr"
336
- ],
337
- "canRead": true,
338
- "canWrite": false,
339
- "ev": false
340
- },
341
- {
342
- "aid": 1,
343
- "iid": 27,
344
- "uuid": "00000116-0000-1000-8000-0026BB765291",
345
- "type": "SupportedRTPConfiguration",
346
- "serviceType": "CameraRTPStreamManagement",
347
- "serviceName": "Canoe 5036",
348
- "description": "Supported RTP Configuration",
349
- "value": "AgEA",
350
- "format": "tlv8",
351
- "perms": [
352
- "pr"
353
- ],
354
- "canRead": true,
355
- "canWrite": false,
356
- "ev": false
357
- },
358
- {
359
- "aid": 1,
360
- "iid": 28,
361
- "uuid": "00000114-0000-1000-8000-0026BB765291",
362
- "type": "SupportedVideoStreamConfiguration",
363
- "serviceType": "CameraRTPStreamManagement",
364
- "serviceName": "Canoe 5036",
365
- "description": "Supported Video Stream Configuration",
366
- "value": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
367
- "format": "tlv8",
368
- "perms": [
369
- "pr"
370
- ],
371
- "canRead": true,
372
- "canWrite": false,
373
- "ev": false
374
- },
375
- {
376
- "aid": 1,
377
- "iid": 29,
378
- "uuid": "000000B0-0000-1000-8000-0026BB765291",
379
- "type": "Active",
380
- "serviceType": "CameraRTPStreamManagement",
381
- "serviceName": "Canoe 5036",
382
- "description": "Active",
383
- "value": 1,
384
- "format": "uint8",
385
- "perms": [
386
- "ev",
387
- "pr",
388
- "pw"
389
- ],
390
- "maxValue": 1,
391
- "minValue": 0,
392
- "minStep": 1,
393
- "canRead": true,
394
- "canWrite": true,
395
- "ev": true
396
- },
397
- {
398
- "aid": 1,
399
- "iid": 23,
400
- "uuid": "00000117-0000-1000-8000-0026BB765291",
401
- "type": "SelectedRTPStreamConfiguration",
402
- "serviceType": "CameraRTPStreamManagement",
403
- "serviceName": "Canoe 5036",
404
- "description": "Selected RTP Stream Configuration",
405
- "value": "AQMCAQI=",
406
- "format": "tlv8",
407
- "perms": [
408
- "pr",
409
- "pw"
410
- ],
411
- "canRead": true,
412
- "canWrite": true,
413
- "ev": false
414
- },
415
- {
416
- "aid": 1,
417
- "iid": 24,
418
- "uuid": "00000118-0000-1000-8000-0026BB765291",
419
- "type": "SetupEndpoints",
420
- "serviceType": "CameraRTPStreamManagement",
421
- "serviceName": "Canoe 5036",
422
- "description": "Setup Endpoints",
423
- "value": "AgEC",
424
- "format": "tlv8",
425
- "perms": [
426
- "pr",
427
- "pw"
428
- ],
429
- "canRead": true,
430
- "canWrite": true,
431
- "ev": false
432
- }
433
- ],
434
- "accessoryInformation": {
435
- "Manufacturer": "HikVision",
436
- "Model": "ECI-T24F2",
437
- "Name": "Canoe 5036",
438
- "Serial Number": "Default-SerialNumber",
439
- "Firmware Revision": "0.0.0"
440
- },
441
- "values": {
442
- "StreamingStatus": "AQEA",
443
- "SupportedAudioStreamConfiguration": "AQ4BAQMCCQEBAQIBAAMBAgAAAQ4BAQICCQEBAQIBAAMBAQIBAA==",
444
- "SupportedRTPConfiguration": "AgEA",
445
- "SupportedVideoStreamConfiguration": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
446
- "Active": 1,
447
- "SelectedRTPStreamConfiguration": "AQMCAQI=",
448
- "SetupEndpoints": "AgEC"
449
- },
450
- "instance": {
451
- "name": "ECI-T24F2",
452
- "username": "5C:EE:FE:4D:64:B4",
453
- "ipAddress": "192.168.1.11",
454
- "port": 39757,
455
- "services": [],
456
- "connectionFailedCount": 0,
457
- "configurationNumber": "3"
458
- },
459
- "uniqueId": "b0824c5bbe7c7e4dd6a8ab26d483cb0138ee56b34e444a0999ab5c24d1d33a58"
295
+ "description": "Active",
296
+ "value": 1,
297
+ "format": "uint8",
298
+ "perms": [
299
+ "ev",
300
+ "pr",
301
+ "pw"
302
+ ],
303
+ "maxValue": 1,
304
+ "minValue": 0,
305
+ "minStep": 1,
306
+ "canRead": true,
307
+ "canWrite": true,
308
+ "ev": true
460
309
  },
461
310
  {
462
311
  "aid": 1,
463
- "iid": 30,
464
- "uuid": "00000110-0000-1000-8000-0026BB765291",
465
- "type": "CameraRTPStreamManagement",
466
- "humanType": "Camera Rtp Stream Management",
312
+ "iid": 15,
313
+ "uuid": "00000117-0000-1000-8000-0026BB765291",
314
+ "type": "SelectedRTPStreamConfiguration",
315
+ "serviceType": "CameraRTPStreamManagement",
316
+ "serviceName": "Canoe 5036",
317
+ "description": "Selected RTP Stream Configuration",
318
+ "value": "AQMCAQI=",
319
+ "format": "tlv8",
320
+ "perms": [
321
+ "pr",
322
+ "pw"
323
+ ],
324
+ "canRead": true,
325
+ "canWrite": true,
326
+ "ev": false
327
+ },
328
+ {
329
+ "aid": 1,
330
+ "iid": 16,
331
+ "uuid": "00000118-0000-1000-8000-0026BB765291",
332
+ "type": "SetupEndpoints",
333
+ "serviceType": "CameraRTPStreamManagement",
334
+ "serviceName": "Canoe 5036",
335
+ "description": "Setup Endpoints",
336
+ "value": "AgEC",
337
+ "format": "tlv8",
338
+ "perms": [
339
+ "pr",
340
+ "pw"
341
+ ],
342
+ "canRead": true,
343
+ "canWrite": true,
344
+ "ev": false
345
+ }
346
+ ],
347
+ "accessoryInformation": {
348
+ "Manufacturer": "HikVision",
349
+ "Model": "ECI-T24F2",
350
+ "Name": "Canoe 5036",
351
+ "Serial Number": "Default-SerialNumber",
352
+ "Firmware Revision": "0.0.0"
353
+ },
354
+ "values": {
355
+ "StreamingStatus": "AQEA",
356
+ "SupportedAudioStreamConfiguration": "AQ4BAQMCCQEBAQIBAAMBAgAAAQ4BAQICCQEBAQIBAAMBAQIBAA==",
357
+ "SupportedRTPConfiguration": "AgEA",
358
+ "SupportedVideoStreamConfiguration": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
359
+ "Active": 1,
360
+ "SelectedRTPStreamConfiguration": "AQMCAQI=",
361
+ "SetupEndpoints": "AgEC"
362
+ },
363
+ "instance": {
364
+ "name": "ECI-T24F2",
365
+ "username": "5C:EE:FE:4D:64:B4",
366
+ "ipAddress": "192.168.1.11",
367
+ "port": 39757,
368
+ "services": [],
369
+ "connectionFailedCount": 0,
370
+ "configurationNumber": "3"
371
+ },
372
+ "uniqueId": "9959f43e6f32e451a9c13e0c028d863fa148c39cbbcb57f93d8d825fc31f8865"
373
+ },
374
+ {
375
+ "aid": 1,
376
+ "iid": 22,
377
+ "uuid": "00000110-0000-1000-8000-0026BB765291",
378
+ "type": "CameraRTPStreamManagement",
379
+ "humanType": "Camera Rtp Stream Management",
380
+ "serviceName": "Canoe 5036",
381
+ "serviceCharacteristics": [
382
+ {
383
+ "aid": 1,
384
+ "iid": 25,
385
+ "uuid": "00000120-0000-1000-8000-0026BB765291",
386
+ "type": "StreamingStatus",
387
+ "serviceType": "CameraRTPStreamManagement",
388
+ "serviceName": "Canoe 5036",
389
+ "description": "Streaming Status",
390
+ "value": "AQEA",
391
+ "format": "tlv8",
392
+ "perms": [
393
+ "ev",
394
+ "pr"
395
+ ],
396
+ "canRead": true,
397
+ "canWrite": false,
398
+ "ev": true
399
+ },
400
+ {
401
+ "aid": 1,
402
+ "iid": 26,
403
+ "uuid": "00000115-0000-1000-8000-0026BB765291",
404
+ "type": "SupportedAudioStreamConfiguration",
405
+ "serviceType": "CameraRTPStreamManagement",
406
+ "serviceName": "Canoe 5036",
407
+ "description": "Supported Audio Stream Configuration",
408
+ "value": "AQ4BAQMCCQEBAQIBAAMBAgAAAQ4BAQICCQEBAQIBAAMBAQIBAA==",
409
+ "format": "tlv8",
410
+ "perms": [
411
+ "pr"
412
+ ],
413
+ "canRead": true,
414
+ "canWrite": false,
415
+ "ev": false
416
+ },
417
+ {
418
+ "aid": 1,
419
+ "iid": 27,
420
+ "uuid": "00000116-0000-1000-8000-0026BB765291",
421
+ "type": "SupportedRTPConfiguration",
422
+ "serviceType": "CameraRTPStreamManagement",
423
+ "serviceName": "Canoe 5036",
424
+ "description": "Supported RTP Configuration",
425
+ "value": "AgEA",
426
+ "format": "tlv8",
427
+ "perms": [
428
+ "pr"
429
+ ],
430
+ "canRead": true,
431
+ "canWrite": false,
432
+ "ev": false
433
+ },
434
+ {
435
+ "aid": 1,
436
+ "iid": 28,
437
+ "uuid": "00000114-0000-1000-8000-0026BB765291",
438
+ "type": "SupportedVideoStreamConfiguration",
439
+ "serviceType": "CameraRTPStreamManagement",
440
+ "serviceName": "Canoe 5036",
441
+ "description": "Supported Video Stream Configuration",
442
+ "value": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
443
+ "format": "tlv8",
444
+ "perms": [
445
+ "pr"
446
+ ],
447
+ "canRead": true,
448
+ "canWrite": false,
449
+ "ev": false
450
+ },
451
+ {
452
+ "aid": 1,
453
+ "iid": 29,
454
+ "uuid": "000000B0-0000-1000-8000-0026BB765291",
455
+ "type": "Active",
456
+ "serviceType": "CameraRTPStreamManagement",
467
457
  "serviceName": "Canoe 5036",
468
- "serviceCharacteristics": [
469
- {
470
- "aid": 1,
471
- "iid": 33,
472
- "uuid": "00000120-0000-1000-8000-0026BB765291",
473
- "type": "StreamingStatus",
474
- "serviceType": "CameraRTPStreamManagement",
475
- "serviceName": "Canoe 5036",
476
- "description": "Streaming Status",
477
- "value": "AQEA",
478
- "format": "tlv8",
479
- "perms": [
480
- "ev",
481
- "pr"
482
- ],
483
- "canRead": true,
484
- "canWrite": false,
485
- "ev": true
486
- },
487
- {
488
- "aid": 1,
489
- "iid": 34,
490
- "uuid": "00000115-0000-1000-8000-0026BB765291",
491
- "type": "SupportedAudioStreamConfiguration",
492
- "serviceType": "CameraRTPStreamManagement",
493
- "serviceName": "Canoe 5036",
494
- "description": "Supported Audio Stream Configuration",
495
- "value": "AQ4BAQMCCQEBAQIBAAMBAgAAAQ4BAQICCQEBAQIBAAMBAQIBAA==",
496
- "format": "tlv8",
497
- "perms": [
498
- "pr"
499
- ],
500
- "canRead": true,
501
- "canWrite": false,
502
- "ev": false
503
- },
504
- {
505
- "aid": 1,
506
- "iid": 35,
507
- "uuid": "00000116-0000-1000-8000-0026BB765291",
508
- "type": "SupportedRTPConfiguration",
509
- "serviceType": "CameraRTPStreamManagement",
510
- "serviceName": "Canoe 5036",
511
- "description": "Supported RTP Configuration",
512
- "value": "AgEA",
513
- "format": "tlv8",
514
- "perms": [
515
- "pr"
516
- ],
517
- "canRead": true,
518
- "canWrite": false,
519
- "ev": false
520
- },
521
- {
522
- "aid": 1,
523
- "iid": 36,
524
- "uuid": "00000114-0000-1000-8000-0026BB765291",
525
- "type": "SupportedVideoStreamConfiguration",
526
- "serviceType": "CameraRTPStreamManagement",
527
- "serviceName": "Canoe 5036",
528
- "description": "Supported Video Stream Configuration",
529
- "value": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
530
- "format": "tlv8",
531
- "perms": [
532
- "pr"
533
- ],
534
- "canRead": true,
535
- "canWrite": false,
536
- "ev": false
537
- },
538
- {
539
- "aid": 1,
540
- "iid": 37,
541
- "uuid": "000000B0-0000-1000-8000-0026BB765291",
542
- "type": "Active",
543
- "serviceType": "CameraRTPStreamManagement",
544
- "serviceName": "Canoe 5036",
545
- "description": "Active",
546
- "value": 1,
547
- "format": "uint8",
548
- "perms": [
549
- "ev",
550
- "pr",
551
- "pw"
552
- ],
553
- "maxValue": 1,
554
- "minValue": 0,
555
- "minStep": 1,
556
- "canRead": true,
557
- "canWrite": true,
558
- "ev": true
559
- },
560
- {
561
- "aid": 1,
562
- "iid": 31,
563
- "uuid": "00000117-0000-1000-8000-0026BB765291",
564
- "type": "SelectedRTPStreamConfiguration",
565
- "serviceType": "CameraRTPStreamManagement",
566
- "serviceName": "Canoe 5036",
567
- "description": "Selected RTP Stream Configuration",
568
- "value": "AQMCAQI=",
569
- "format": "tlv8",
570
- "perms": [
571
- "pr",
572
- "pw"
573
- ],
574
- "canRead": true,
575
- "canWrite": true,
576
- "ev": false
577
- },
578
- {
579
- "aid": 1,
580
- "iid": 32,
581
- "uuid": "00000118-0000-1000-8000-0026BB765291",
582
- "type": "SetupEndpoints",
583
- "serviceType": "CameraRTPStreamManagement",
584
- "serviceName": "Canoe 5036",
585
- "description": "Setup Endpoints",
586
- "value": "AgEC",
587
- "format": "tlv8",
588
- "perms": [
589
- "pr",
590
- "pw"
591
- ],
592
- "canRead": true,
593
- "canWrite": true,
594
- "ev": false
595
- }
596
- ],
597
- "accessoryInformation": {
598
- "Manufacturer": "HikVision",
599
- "Model": "ECI-T24F2",
600
- "Name": "Canoe 5036",
601
- "Serial Number": "Default-SerialNumber",
602
- "Firmware Revision": "0.0.0"
603
- },
604
- "values": {
605
- "StreamingStatus": "AQEA",
606
- "SupportedAudioStreamConfiguration": "AQ4BAQMCCQEBAQIBAAMBAgAAAQ4BAQICCQEBAQIBAAMBAQIBAA==",
607
- "SupportedRTPConfiguration": "AgEA",
608
- "SupportedVideoStreamConfiguration": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
609
- "Active": 1,
610
- "SelectedRTPStreamConfiguration": "AQMCAQI=",
611
- "SetupEndpoints": "AgEC"
612
- },
613
- "instance": {
614
- "name": "ECI-T24F2",
615
- "username": "5C:EE:FE:4D:64:B4",
616
- "ipAddress": "192.168.1.11",
617
- "port": 39757,
618
- "services": [],
619
- "connectionFailedCount": 0,
620
- "configurationNumber": "3"
621
- },
622
- "uniqueId": "629af36fdec5d22c5537a1f0312d88b6f3765ba57e29b7def8c96538a4ffb16b"
458
+ "description": "Active",
459
+ "value": 1,
460
+ "format": "uint8",
461
+ "perms": [
462
+ "ev",
463
+ "pr",
464
+ "pw"
465
+ ],
466
+ "maxValue": 1,
467
+ "minValue": 0,
468
+ "minStep": 1,
469
+ "canRead": true,
470
+ "canWrite": true,
471
+ "ev": true
472
+ },
473
+ {
474
+ "aid": 1,
475
+ "iid": 23,
476
+ "uuid": "00000117-0000-1000-8000-0026BB765291",
477
+ "type": "SelectedRTPStreamConfiguration",
478
+ "serviceType": "CameraRTPStreamManagement",
479
+ "serviceName": "Canoe 5036",
480
+ "description": "Selected RTP Stream Configuration",
481
+ "value": "AQMCAQI=",
482
+ "format": "tlv8",
483
+ "perms": [
484
+ "pr",
485
+ "pw"
486
+ ],
487
+ "canRead": true,
488
+ "canWrite": true,
489
+ "ev": false
490
+ },
491
+ {
492
+ "aid": 1,
493
+ "iid": 24,
494
+ "uuid": "00000118-0000-1000-8000-0026BB765291",
495
+ "type": "SetupEndpoints",
496
+ "serviceType": "CameraRTPStreamManagement",
497
+ "serviceName": "Canoe 5036",
498
+ "description": "Setup Endpoints",
499
+ "value": "AgEC",
500
+ "format": "tlv8",
501
+ "perms": [
502
+ "pr",
503
+ "pw"
504
+ ],
505
+ "canRead": true,
506
+ "canWrite": true,
507
+ "ev": false
508
+ }
509
+ ],
510
+ "accessoryInformation": {
511
+ "Manufacturer": "HikVision",
512
+ "Model": "ECI-T24F2",
513
+ "Name": "Canoe 5036",
514
+ "Serial Number": "Default-SerialNumber",
515
+ "Firmware Revision": "0.0.0"
516
+ },
517
+ "values": {
518
+ "StreamingStatus": "AQEA",
519
+ "SupportedAudioStreamConfiguration": "AQ4BAQMCCQEBAQIBAAMBAgAAAQ4BAQICCQEBAQIBAAMBAQIBAA==",
520
+ "SupportedRTPConfiguration": "AgEA",
521
+ "SupportedVideoStreamConfiguration": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
522
+ "Active": 1,
523
+ "SelectedRTPStreamConfiguration": "AQMCAQI=",
524
+ "SetupEndpoints": "AgEC"
525
+ },
526
+ "instance": {
527
+ "name": "ECI-T24F2",
528
+ "username": "5C:EE:FE:4D:64:B4",
529
+ "ipAddress": "192.168.1.11",
530
+ "port": 39757,
531
+ "services": [],
532
+ "connectionFailedCount": 0,
533
+ "configurationNumber": "3"
534
+ },
535
+ "uniqueId": "b0824c5bbe7c7e4dd6a8ab26d483cb0138ee56b34e444a0999ab5c24d1d33a58"
536
+ },
537
+ {
538
+ "aid": 1,
539
+ "iid": 30,
540
+ "uuid": "00000110-0000-1000-8000-0026BB765291",
541
+ "type": "CameraRTPStreamManagement",
542
+ "humanType": "Camera Rtp Stream Management",
543
+ "serviceName": "Canoe 5036",
544
+ "serviceCharacteristics": [
545
+ {
546
+ "aid": 1,
547
+ "iid": 33,
548
+ "uuid": "00000120-0000-1000-8000-0026BB765291",
549
+ "type": "StreamingStatus",
550
+ "serviceType": "CameraRTPStreamManagement",
551
+ "serviceName": "Canoe 5036",
552
+ "description": "Streaming Status",
553
+ "value": "AQEA",
554
+ "format": "tlv8",
555
+ "perms": [
556
+ "ev",
557
+ "pr"
558
+ ],
559
+ "canRead": true,
560
+ "canWrite": false,
561
+ "ev": true
562
+ },
563
+ {
564
+ "aid": 1,
565
+ "iid": 34,
566
+ "uuid": "00000115-0000-1000-8000-0026BB765291",
567
+ "type": "SupportedAudioStreamConfiguration",
568
+ "serviceType": "CameraRTPStreamManagement",
569
+ "serviceName": "Canoe 5036",
570
+ "description": "Supported Audio Stream Configuration",
571
+ "value": "AQ4BAQMCCQEBAQIBAAMBAgAAAQ4BAQICCQEBAQIBAAMBAQIBAA==",
572
+ "format": "tlv8",
573
+ "perms": [
574
+ "pr"
575
+ ],
576
+ "canRead": true,
577
+ "canWrite": false,
578
+ "ev": false
579
+ },
580
+ {
581
+ "aid": 1,
582
+ "iid": 35,
583
+ "uuid": "00000116-0000-1000-8000-0026BB765291",
584
+ "type": "SupportedRTPConfiguration",
585
+ "serviceType": "CameraRTPStreamManagement",
586
+ "serviceName": "Canoe 5036",
587
+ "description": "Supported RTP Configuration",
588
+ "value": "AgEA",
589
+ "format": "tlv8",
590
+ "perms": [
591
+ "pr"
592
+ ],
593
+ "canRead": true,
594
+ "canWrite": false,
595
+ "ev": false
596
+ },
597
+ {
598
+ "aid": 1,
599
+ "iid": 36,
600
+ "uuid": "00000114-0000-1000-8000-0026BB765291",
601
+ "type": "SupportedVideoStreamConfiguration",
602
+ "serviceType": "CameraRTPStreamManagement",
603
+ "serviceName": "Canoe 5036",
604
+ "description": "Supported Video Stream Configuration",
605
+ "value": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
606
+ "format": "tlv8",
607
+ "perms": [
608
+ "pr"
609
+ ],
610
+ "canRead": true,
611
+ "canWrite": false,
612
+ "ev": false
613
+ },
614
+ {
615
+ "aid": 1,
616
+ "iid": 37,
617
+ "uuid": "000000B0-0000-1000-8000-0026BB765291",
618
+ "type": "Active",
619
+ "serviceType": "CameraRTPStreamManagement",
620
+ "serviceName": "Canoe 5036",
621
+ "description": "Active",
622
+ "value": 1,
623
+ "format": "uint8",
624
+ "perms": [
625
+ "ev",
626
+ "pr",
627
+ "pw"
628
+ ],
629
+ "maxValue": 1,
630
+ "minValue": 0,
631
+ "minStep": 1,
632
+ "canRead": true,
633
+ "canWrite": true,
634
+ "ev": true
635
+ },
636
+ {
637
+ "aid": 1,
638
+ "iid": 31,
639
+ "uuid": "00000117-0000-1000-8000-0026BB765291",
640
+ "type": "SelectedRTPStreamConfiguration",
641
+ "serviceType": "CameraRTPStreamManagement",
642
+ "serviceName": "Canoe 5036",
643
+ "description": "Selected RTP Stream Configuration",
644
+ "value": "AQMCAQI=",
645
+ "format": "tlv8",
646
+ "perms": [
647
+ "pr",
648
+ "pw"
649
+ ],
650
+ "canRead": true,
651
+ "canWrite": true,
652
+ "ev": false
653
+ },
654
+ {
655
+ "aid": 1,
656
+ "iid": 32,
657
+ "uuid": "00000118-0000-1000-8000-0026BB765291",
658
+ "type": "SetupEndpoints",
659
+ "serviceType": "CameraRTPStreamManagement",
660
+ "serviceName": "Canoe 5036",
661
+ "description": "Setup Endpoints",
662
+ "value": "AgEC",
663
+ "format": "tlv8",
664
+ "perms": [
665
+ "pr",
666
+ "pw"
667
+ ],
668
+ "canRead": true,
669
+ "canWrite": true,
670
+ "ev": false
671
+ }
672
+ ],
673
+ "accessoryInformation": {
674
+ "Manufacturer": "HikVision",
675
+ "Model": "ECI-T24F2",
676
+ "Name": "Canoe 5036",
677
+ "Serial Number": "Default-SerialNumber",
678
+ "Firmware Revision": "0.0.0"
679
+ },
680
+ "values": {
681
+ "StreamingStatus": "AQEA",
682
+ "SupportedAudioStreamConfiguration": "AQ4BAQMCCQEBAQIBAAMBAgAAAQ4BAQICCQEBAQIBAAMBAQIBAA==",
683
+ "SupportedRTPConfiguration": "AgEA",
684
+ "SupportedVideoStreamConfiguration": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
685
+ "Active": 1,
686
+ "SelectedRTPStreamConfiguration": "AQMCAQI=",
687
+ "SetupEndpoints": "AgEC"
688
+ },
689
+ "instance": {
690
+ "name": "ECI-T24F2",
691
+ "username": "5C:EE:FE:4D:64:B4",
692
+ "ipAddress": "192.168.1.11",
693
+ "port": 39757,
694
+ "services": [],
695
+ "connectionFailedCount": 0,
696
+ "configurationNumber": "3"
697
+ },
698
+ "uniqueId": "629af36fdec5d22c5537a1f0312d88b6f3765ba57e29b7def8c96538a4ffb16b"
699
+ },
700
+ {
701
+ "aid": 1,
702
+ "iid": 38,
703
+ "uuid": "00000110-0000-1000-8000-0026BB765291",
704
+ "type": "CameraRTPStreamManagement",
705
+ "humanType": "Camera Rtp Stream Management",
706
+ "serviceName": "Canoe 5036",
707
+ "serviceCharacteristics": [
708
+ {
709
+ "aid": 1,
710
+ "iid": 41,
711
+ "uuid": "00000120-0000-1000-8000-0026BB765291",
712
+ "type": "StreamingStatus",
713
+ "serviceType": "CameraRTPStreamManagement",
714
+ "serviceName": "Canoe 5036",
715
+ "description": "Streaming Status",
716
+ "value": "AQEA",
717
+ "format": "tlv8",
718
+ "perms": [
719
+ "ev",
720
+ "pr"
721
+ ],
722
+ "canRead": true,
723
+ "canWrite": false,
724
+ "ev": true
725
+ },
726
+ {
727
+ "aid": 1,
728
+ "iid": 42,
729
+ "uuid": "00000115-0000-1000-8000-0026BB765291",
730
+ "type": "SupportedAudioStreamConfiguration",
731
+ "serviceType": "CameraRTPStreamManagement",
732
+ "serviceName": "Canoe 5036",
733
+ "description": "Supported Audio Stream Configuration",
734
+ "value": "AQ4BAQMCCQEBAQIBAAMBAgAAAQ4BAQICCQEBAQIBAAMBAQIBAA==",
735
+ "format": "tlv8",
736
+ "perms": [
737
+ "pr"
738
+ ],
739
+ "canRead": true,
740
+ "canWrite": false,
741
+ "ev": false
742
+ },
743
+ {
744
+ "aid": 1,
745
+ "iid": 43,
746
+ "uuid": "00000116-0000-1000-8000-0026BB765291",
747
+ "type": "SupportedRTPConfiguration",
748
+ "serviceType": "CameraRTPStreamManagement",
749
+ "serviceName": "Canoe 5036",
750
+ "description": "Supported RTP Configuration",
751
+ "value": "AgEA",
752
+ "format": "tlv8",
753
+ "perms": [
754
+ "pr"
755
+ ],
756
+ "canRead": true,
757
+ "canWrite": false,
758
+ "ev": false
759
+ },
760
+ {
761
+ "aid": 1,
762
+ "iid": 44,
763
+ "uuid": "00000114-0000-1000-8000-0026BB765291",
764
+ "type": "SupportedVideoStreamConfiguration",
765
+ "serviceType": "CameraRTPStreamManagement",
766
+ "serviceName": "Canoe 5036",
767
+ "description": "Supported Video Stream Configuration",
768
+ "value": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
769
+ "format": "tlv8",
770
+ "perms": [
771
+ "pr"
772
+ ],
773
+ "canRead": true,
774
+ "canWrite": false,
775
+ "ev": false
776
+ },
777
+ {
778
+ "aid": 1,
779
+ "iid": 45,
780
+ "uuid": "000000B0-0000-1000-8000-0026BB765291",
781
+ "type": "Active",
782
+ "serviceType": "CameraRTPStreamManagement",
783
+ "serviceName": "Canoe 5036",
784
+ "description": "Active",
785
+ "value": 1,
786
+ "format": "uint8",
787
+ "perms": [
788
+ "ev",
789
+ "pr",
790
+ "pw"
791
+ ],
792
+ "maxValue": 1,
793
+ "minValue": 0,
794
+ "minStep": 1,
795
+ "canRead": true,
796
+ "canWrite": true,
797
+ "ev": true
798
+ },
799
+ {
800
+ "aid": 1,
801
+ "iid": 39,
802
+ "uuid": "00000117-0000-1000-8000-0026BB765291",
803
+ "type": "SelectedRTPStreamConfiguration",
804
+ "serviceType": "CameraRTPStreamManagement",
805
+ "serviceName": "Canoe 5036",
806
+ "description": "Selected RTP Stream Configuration",
807
+ "value": "AQMCAQI=",
808
+ "format": "tlv8",
809
+ "perms": [
810
+ "pr",
811
+ "pw"
812
+ ],
813
+ "canRead": true,
814
+ "canWrite": true,
815
+ "ev": false
623
816
  },
624
817
  {
625
818
  "aid": 1,
626
- "iid": 38,
627
- "uuid": "00000110-0000-1000-8000-0026BB765291",
628
- "type": "CameraRTPStreamManagement",
629
- "humanType": "Camera Rtp Stream Management",
819
+ "iid": 40,
820
+ "uuid": "00000118-0000-1000-8000-0026BB765291",
821
+ "type": "SetupEndpoints",
822
+ "serviceType": "CameraRTPStreamManagement",
630
823
  "serviceName": "Canoe 5036",
631
- "serviceCharacteristics": [
632
- {
633
- "aid": 1,
634
- "iid": 41,
635
- "uuid": "00000120-0000-1000-8000-0026BB765291",
636
- "type": "StreamingStatus",
637
- "serviceType": "CameraRTPStreamManagement",
638
- "serviceName": "Canoe 5036",
639
- "description": "Streaming Status",
640
- "value": "AQEA",
641
- "format": "tlv8",
642
- "perms": [
643
- "ev",
644
- "pr"
645
- ],
646
- "canRead": true,
647
- "canWrite": false,
648
- "ev": true
649
- },
650
- {
651
- "aid": 1,
652
- "iid": 42,
653
- "uuid": "00000115-0000-1000-8000-0026BB765291",
654
- "type": "SupportedAudioStreamConfiguration",
655
- "serviceType": "CameraRTPStreamManagement",
656
- "serviceName": "Canoe 5036",
657
- "description": "Supported Audio Stream Configuration",
658
- "value": "AQ4BAQMCCQEBAQIBAAMBAgAAAQ4BAQICCQEBAQIBAAMBAQIBAA==",
659
- "format": "tlv8",
660
- "perms": [
661
- "pr"
662
- ],
663
- "canRead": true,
664
- "canWrite": false,
665
- "ev": false
666
- },
667
- {
668
- "aid": 1,
669
- "iid": 43,
670
- "uuid": "00000116-0000-1000-8000-0026BB765291",
671
- "type": "SupportedRTPConfiguration",
672
- "serviceType": "CameraRTPStreamManagement",
673
- "serviceName": "Canoe 5036",
674
- "description": "Supported RTP Configuration",
675
- "value": "AgEA",
676
- "format": "tlv8",
677
- "perms": [
678
- "pr"
679
- ],
680
- "canRead": true,
681
- "canWrite": false,
682
- "ev": false
683
- },
684
- {
685
- "aid": 1,
686
- "iid": 44,
687
- "uuid": "00000114-0000-1000-8000-0026BB765291",
688
- "type": "SupportedVideoStreamConfiguration",
689
- "serviceType": "CameraRTPStreamManagement",
690
- "serviceName": "Canoe 5036",
691
- "description": "Supported Video Stream Configuration",
692
- "value": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
693
- "format": "tlv8",
694
- "perms": [
695
- "pr"
696
- ],
697
- "canRead": true,
698
- "canWrite": false,
699
- "ev": false
700
- },
701
- {
702
- "aid": 1,
703
- "iid": 45,
704
- "uuid": "000000B0-0000-1000-8000-0026BB765291",
705
- "type": "Active",
706
- "serviceType": "CameraRTPStreamManagement",
707
- "serviceName": "Canoe 5036",
708
- "description": "Active",
709
- "value": 1,
710
- "format": "uint8",
711
- "perms": [
712
- "ev",
713
- "pr",
714
- "pw"
715
- ],
716
- "maxValue": 1,
717
- "minValue": 0,
718
- "minStep": 1,
719
- "canRead": true,
720
- "canWrite": true,
721
- "ev": true
722
- },
723
- {
724
- "aid": 1,
725
- "iid": 39,
726
- "uuid": "00000117-0000-1000-8000-0026BB765291",
727
- "type": "SelectedRTPStreamConfiguration",
728
- "serviceType": "CameraRTPStreamManagement",
729
- "serviceName": "Canoe 5036",
730
- "description": "Selected RTP Stream Configuration",
731
- "value": "AQMCAQI=",
732
- "format": "tlv8",
733
- "perms": [
734
- "pr",
735
- "pw"
736
- ],
737
- "canRead": true,
738
- "canWrite": true,
739
- "ev": false
740
- },
741
- {
742
- "aid": 1,
743
- "iid": 40,
744
- "uuid": "00000118-0000-1000-8000-0026BB765291",
745
- "type": "SetupEndpoints",
746
- "serviceType": "CameraRTPStreamManagement",
747
- "serviceName": "Canoe 5036",
748
- "description": "Setup Endpoints",
749
- "value": "AgEC",
750
- "format": "tlv8",
751
- "perms": [
752
- "pr",
753
- "pw"
754
- ],
755
- "canRead": true,
756
- "canWrite": true,
757
- "ev": false
758
- }
759
- ],
760
- "accessoryInformation": {
761
- "Manufacturer": "HikVision",
762
- "Model": "ECI-T24F2",
763
- "Name": "Canoe 5036",
764
- "Serial Number": "Default-SerialNumber",
765
- "Firmware Revision": "0.0.0"
766
- },
767
- "values": {
768
- "StreamingStatus": "AQEA",
769
- "SupportedAudioStreamConfiguration": "AQ4BAQMCCQEBAQIBAAMBAgAAAQ4BAQICCQEBAQIBAAMBAQIBAA==",
770
- "SupportedRTPConfiguration": "AgEA",
771
- "SupportedVideoStreamConfiguration": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
772
- "Active": 1,
773
- "SelectedRTPStreamConfiguration": "AQMCAQI=",
774
- "SetupEndpoints": "AgEC"
775
- },
776
- "instance": {
777
- "name": "ECI-T24F2",
778
- "username": "5C:EE:FE:4D:64:B4",
779
- "ipAddress": "192.168.1.11",
780
- "port": 39757,
781
- "services": [],
782
- "connectionFailedCount": 0,
783
- "configurationNumber": "3"
784
- },
785
- "uniqueId": "b3b668fc3a29d9589bfcfa0395d7ce1e1029e6b70b4ca6129579cb0103cc6ea9"
824
+ "description": "Setup Endpoints",
825
+ "value": "AgEC",
826
+ "format": "tlv8",
827
+ "perms": [
828
+ "pr",
829
+ "pw"
830
+ ],
831
+ "canRead": true,
832
+ "canWrite": true,
833
+ "ev": false
834
+ }
835
+ ],
836
+ "accessoryInformation": {
837
+ "Manufacturer": "HikVision",
838
+ "Model": "ECI-T24F2",
839
+ "Name": "Canoe 5036",
840
+ "Serial Number": "Default-SerialNumber",
841
+ "Firmware Revision": "0.0.0"
842
+ },
843
+ "values": {
844
+ "StreamingStatus": "AQEA",
845
+ "SupportedAudioStreamConfiguration": "AQ4BAQMCCQEBAQIBAAMBAgAAAQ4BAQICCQEBAQIBAAMBAQIBAA==",
846
+ "SupportedRTPConfiguration": "AgEA",
847
+ "SupportedVideoStreamConfiguration": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
848
+ "Active": 1,
849
+ "SelectedRTPStreamConfiguration": "AQMCAQI=",
850
+ "SetupEndpoints": "AgEC"
851
+ },
852
+ "instance": {
853
+ "name": "ECI-T24F2",
854
+ "username": "5C:EE:FE:4D:64:B4",
855
+ "ipAddress": "192.168.1.11",
856
+ "port": 39757,
857
+ "services": [],
858
+ "connectionFailedCount": 0,
859
+ "configurationNumber": "3"
860
+ },
861
+ "uniqueId": "b3b668fc3a29d9589bfcfa0395d7ce1e1029e6b70b4ca6129579cb0103cc6ea9"
862
+ },
863
+ {
864
+ "aid": 1,
865
+ "iid": 46,
866
+ "uuid": "00000110-0000-1000-8000-0026BB765291",
867
+ "type": "CameraRTPStreamManagement",
868
+ "humanType": "Camera Rtp Stream Management",
869
+ "serviceName": "Canoe 5036",
870
+ "serviceCharacteristics": [
871
+ {
872
+ "aid": 1,
873
+ "iid": 49,
874
+ "uuid": "00000120-0000-1000-8000-0026BB765291",
875
+ "type": "StreamingStatus",
876
+ "serviceType": "CameraRTPStreamManagement",
877
+ "serviceName": "Canoe 5036",
878
+ "description": "Streaming Status",
879
+ "value": "AQEA",
880
+ "format": "tlv8",
881
+ "perms": [
882
+ "ev",
883
+ "pr"
884
+ ],
885
+ "canRead": true,
886
+ "canWrite": false,
887
+ "ev": true
786
888
  },
787
889
  {
788
890
  "aid": 1,
789
- "iid": 46,
790
- "uuid": "00000110-0000-1000-8000-0026BB765291",
791
- "type": "CameraRTPStreamManagement",
792
- "humanType": "Camera Rtp Stream Management",
891
+ "iid": 50,
892
+ "uuid": "00000115-0000-1000-8000-0026BB765291",
893
+ "type": "SupportedAudioStreamConfiguration",
894
+ "serviceType": "CameraRTPStreamManagement",
793
895
  "serviceName": "Canoe 5036",
794
- "serviceCharacteristics": [
795
- {
796
- "aid": 1,
797
- "iid": 49,
798
- "uuid": "00000120-0000-1000-8000-0026BB765291",
799
- "type": "StreamingStatus",
800
- "serviceType": "CameraRTPStreamManagement",
801
- "serviceName": "Canoe 5036",
802
- "description": "Streaming Status",
803
- "value": "AQEA",
804
- "format": "tlv8",
805
- "perms": [
806
- "ev",
807
- "pr"
808
- ],
809
- "canRead": true,
810
- "canWrite": false,
811
- "ev": true
812
- },
813
- {
814
- "aid": 1,
815
- "iid": 50,
816
- "uuid": "00000115-0000-1000-8000-0026BB765291",
817
- "type": "SupportedAudioStreamConfiguration",
818
- "serviceType": "CameraRTPStreamManagement",
819
- "serviceName": "Canoe 5036",
820
- "description": "Supported Audio Stream Configuration",
821
- "value": "AQ4BAQMCCQEBAQIBAAMBAgAAAQ4BAQICCQEBAQIBAAMBAQIBAA==",
822
- "format": "tlv8",
823
- "perms": [
824
- "pr"
825
- ],
826
- "canRead": true,
827
- "canWrite": false,
828
- "ev": false
829
- },
830
- {
831
- "aid": 1,
832
- "iid": 51,
833
- "uuid": "00000116-0000-1000-8000-0026BB765291",
834
- "type": "SupportedRTPConfiguration",
835
- "serviceType": "CameraRTPStreamManagement",
836
- "serviceName": "Canoe 5036",
837
- "description": "Supported RTP Configuration",
838
- "value": "AgEA",
839
- "format": "tlv8",
840
- "perms": [
841
- "pr"
842
- ],
843
- "canRead": true,
844
- "canWrite": false,
845
- "ev": false
846
- },
847
- {
848
- "aid": 1,
849
- "iid": 52,
850
- "uuid": "00000114-0000-1000-8000-0026BB765291",
851
- "type": "SupportedVideoStreamConfiguration",
852
- "serviceType": "CameraRTPStreamManagement",
853
- "serviceName": "Canoe 5036",
854
- "description": "Supported Video Stream Configuration",
855
- "value": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
856
- "format": "tlv8",
857
- "perms": [
858
- "pr"
859
- ],
860
- "canRead": true,
861
- "canWrite": false,
862
- "ev": false
863
- },
864
- {
865
- "aid": 1,
866
- "iid": 53,
867
- "uuid": "000000B0-0000-1000-8000-0026BB765291",
868
- "type": "Active",
869
- "serviceType": "CameraRTPStreamManagement",
870
- "serviceName": "Canoe 5036",
871
- "description": "Active",
872
- "value": 1,
873
- "format": "uint8",
874
- "perms": [
875
- "ev",
876
- "pr",
877
- "pw"
878
- ],
879
- "maxValue": 1,
880
- "minValue": 0,
881
- "minStep": 1,
882
- "canRead": true,
883
- "canWrite": true,
884
- "ev": true
885
- },
886
- {
887
- "aid": 1,
888
- "iid": 47,
889
- "uuid": "00000117-0000-1000-8000-0026BB765291",
890
- "type": "SelectedRTPStreamConfiguration",
891
- "serviceType": "CameraRTPStreamManagement",
892
- "serviceName": "Canoe 5036",
893
- "description": "Selected RTP Stream Configuration",
894
- "value": "AQMCAQI=",
895
- "format": "tlv8",
896
- "perms": [
897
- "pr",
898
- "pw"
899
- ],
900
- "canRead": true,
901
- "canWrite": true,
902
- "ev": false
903
- },
904
- {
905
- "aid": 1,
906
- "iid": 48,
907
- "uuid": "00000118-0000-1000-8000-0026BB765291",
908
- "type": "SetupEndpoints",
909
- "serviceType": "CameraRTPStreamManagement",
910
- "serviceName": "Canoe 5036",
911
- "description": "Setup Endpoints",
912
- "value": "AgEC",
913
- "format": "tlv8",
914
- "perms": [
915
- "pr",
916
- "pw"
917
- ],
918
- "canRead": true,
919
- "canWrite": true,
920
- "ev": false
921
- }
922
- ],
923
- "accessoryInformation": {
924
- "Manufacturer": "HikVision",
925
- "Model": "ECI-T24F2",
926
- "Name": "Canoe 5036",
927
- "Serial Number": "Default-SerialNumber",
928
- "Firmware Revision": "0.0.0"
929
- },
930
- "values": {
931
- "StreamingStatus": "AQEA",
932
- "SupportedAudioStreamConfiguration": "AQ4BAQMCCQEBAQIBAAMBAgAAAQ4BAQICCQEBAQIBAAMBAQIBAA==",
933
- "SupportedRTPConfiguration": "AgEA",
934
- "SupportedVideoStreamConfiguration": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
935
- "Active": 1,
936
- "SelectedRTPStreamConfiguration": "AQMCAQI=",
937
- "SetupEndpoints": "AgEC"
938
- },
939
- "instance": {
940
- "name": "ECI-T24F2",
941
- "username": "5C:EE:FE:4D:64:B4",
942
- "ipAddress": "192.168.1.11",
943
- "port": 39757,
944
- "services": [],
945
- "connectionFailedCount": 0,
946
- "configurationNumber": "3"
947
- },
948
- "uniqueId": "57cf7042ca8aac16275fa2d6d135b1855a6faaadcd2e46499ecba278bbf241d3"
896
+ "description": "Supported Audio Stream Configuration",
897
+ "value": "AQ4BAQMCCQEBAQIBAAMBAgAAAQ4BAQICCQEBAQIBAAMBAQIBAA==",
898
+ "format": "tlv8",
899
+ "perms": [
900
+ "pr"
901
+ ],
902
+ "canRead": true,
903
+ "canWrite": false,
904
+ "ev": false
949
905
  },
950
906
  {
951
907
  "aid": 1,
952
- "iid": 54,
953
- "uuid": "000000A2-0000-1000-8000-0026BB765291",
954
- "type": "ProtocolInformation",
955
- "humanType": "Protocol Information",
908
+ "iid": 51,
909
+ "uuid": "00000116-0000-1000-8000-0026BB765291",
910
+ "type": "SupportedRTPConfiguration",
911
+ "serviceType": "CameraRTPStreamManagement",
956
912
  "serviceName": "Canoe 5036",
957
- "serviceCharacteristics": [
958
- {
959
- "aid": 1,
960
- "iid": 55,
961
- "uuid": "00000037-0000-1000-8000-0026BB765291",
962
- "type": "Version",
963
- "serviceType": "ProtocolInformation",
964
- "serviceName": "Canoe 5036",
965
- "description": "Version",
966
- "value": "1.1.0",
967
- "format": "string",
968
- "perms": [
969
- "pr"
970
- ],
971
- "canRead": true,
972
- "canWrite": false,
973
- "ev": false
974
- }
975
- ],
976
- "accessoryInformation": {
977
- "Manufacturer": "HikVision",
978
- "Model": "ECI-T24F2",
979
- "Name": "Canoe 5036",
980
- "Serial Number": "Default-SerialNumber",
981
- "Firmware Revision": "0.0.0"
982
- },
983
- "values": {
984
- "Version": "1.1.0"
985
- },
986
- "instance": {
987
- "name": "ECI-T24F2",
988
- "username": "5C:EE:FE:4D:64:B4",
989
- "ipAddress": "192.168.1.11",
990
- "port": 39757,
991
- "services": [],
992
- "connectionFailedCount": 0,
993
- "configurationNumber": "3"
994
- },
995
- "uniqueId": "660f0569500a9c2570f435943368c4f33c9a9c5162f366c66c1eb520f874c84e"
913
+ "description": "Supported RTP Configuration",
914
+ "value": "AgEA",
915
+ "format": "tlv8",
916
+ "perms": [
917
+ "pr"
918
+ ],
919
+ "canRead": true,
920
+ "canWrite": false,
921
+ "ev": false
996
922
  },
997
923
  {
998
924
  "aid": 1,
999
- "iid": 2000000008,
1000
- "uuid": "000000A2-0000-1000-8000-0026BB765291",
1001
- "type": "ProtocolInformation",
1002
- "humanType": "Protocol Information",
925
+ "iid": 52,
926
+ "uuid": "00000114-0000-1000-8000-0026BB765291",
927
+ "type": "SupportedVideoStreamConfiguration",
928
+ "serviceType": "CameraRTPStreamManagement",
929
+ "serviceName": "Canoe 5036",
930
+ "description": "Supported Video Stream Configuration",
931
+ "value": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
932
+ "format": "tlv8",
933
+ "perms": [
934
+ "pr"
935
+ ],
936
+ "canRead": true,
937
+ "canWrite": false,
938
+ "ev": false
939
+ },
940
+ {
941
+ "aid": 1,
942
+ "iid": 53,
943
+ "uuid": "000000B0-0000-1000-8000-0026BB765291",
944
+ "type": "Active",
945
+ "serviceType": "CameraRTPStreamManagement",
946
+ "serviceName": "Canoe 5036",
947
+ "description": "Active",
948
+ "value": 1,
949
+ "format": "uint8",
950
+ "perms": [
951
+ "ev",
952
+ "pr",
953
+ "pw"
954
+ ],
955
+ "maxValue": 1,
956
+ "minValue": 0,
957
+ "minStep": 1,
958
+ "canRead": true,
959
+ "canWrite": true,
960
+ "ev": true
961
+ },
962
+ {
963
+ "aid": 1,
964
+ "iid": 47,
965
+ "uuid": "00000117-0000-1000-8000-0026BB765291",
966
+ "type": "SelectedRTPStreamConfiguration",
967
+ "serviceType": "CameraRTPStreamManagement",
968
+ "serviceName": "Canoe 5036",
969
+ "description": "Selected RTP Stream Configuration",
970
+ "value": "AQMCAQI=",
971
+ "format": "tlv8",
972
+ "perms": [
973
+ "pr",
974
+ "pw"
975
+ ],
976
+ "canRead": true,
977
+ "canWrite": true,
978
+ "ev": false
979
+ },
980
+ {
981
+ "aid": 1,
982
+ "iid": 48,
983
+ "uuid": "00000118-0000-1000-8000-0026BB765291",
984
+ "type": "SetupEndpoints",
985
+ "serviceType": "CameraRTPStreamManagement",
986
+ "serviceName": "Canoe 5036",
987
+ "description": "Setup Endpoints",
988
+ "value": "AgEC",
989
+ "format": "tlv8",
990
+ "perms": [
991
+ "pr",
992
+ "pw"
993
+ ],
994
+ "canRead": true,
995
+ "canWrite": true,
996
+ "ev": false
997
+ }
998
+ ],
999
+ "accessoryInformation": {
1000
+ "Manufacturer": "HikVision",
1001
+ "Model": "ECI-T24F2",
1002
+ "Name": "Canoe 5036",
1003
+ "Serial Number": "Default-SerialNumber",
1004
+ "Firmware Revision": "0.0.0"
1005
+ },
1006
+ "values": {
1007
+ "StreamingStatus": "AQEA",
1008
+ "SupportedAudioStreamConfiguration": "AQ4BAQMCCQEBAQIBAAMBAgAAAQ4BAQICCQEBAQIBAAMBAQIBAA==",
1009
+ "SupportedRTPConfiguration": "AgEA",
1010
+ "SupportedVideoStreamConfiguration": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
1011
+ "Active": 1,
1012
+ "SelectedRTPStreamConfiguration": "AQMCAQI=",
1013
+ "SetupEndpoints": "AgEC"
1014
+ },
1015
+ "instance": {
1016
+ "name": "ECI-T24F2",
1017
+ "username": "5C:EE:FE:4D:64:B4",
1018
+ "ipAddress": "192.168.1.11",
1019
+ "port": 39757,
1020
+ "services": [],
1021
+ "connectionFailedCount": 0,
1022
+ "configurationNumber": "3"
1023
+ },
1024
+ "uniqueId": "57cf7042ca8aac16275fa2d6d135b1855a6faaadcd2e46499ecba278bbf241d3"
1025
+ },
1026
+ {
1027
+ "aid": 1,
1028
+ "iid": 54,
1029
+ "uuid": "000000A2-0000-1000-8000-0026BB765291",
1030
+ "type": "ProtocolInformation",
1031
+ "humanType": "Protocol Information",
1032
+ "serviceName": "Canoe 5036",
1033
+ "serviceCharacteristics": [
1034
+ {
1035
+ "aid": 1,
1036
+ "iid": 55,
1037
+ "uuid": "00000037-0000-1000-8000-0026BB765291",
1038
+ "type": "Version",
1039
+ "serviceType": "ProtocolInformation",
1040
+ "serviceName": "Canoe 5036",
1041
+ "description": "Version",
1042
+ "value": "1.1.0",
1043
+ "format": "string",
1044
+ "perms": [
1045
+ "pr"
1046
+ ],
1047
+ "canRead": true,
1048
+ "canWrite": false,
1049
+ "ev": false
1050
+ }
1051
+ ],
1052
+ "accessoryInformation": {
1053
+ "Manufacturer": "HikVision",
1054
+ "Model": "ECI-T24F2",
1055
+ "Name": "Canoe 5036",
1056
+ "Serial Number": "Default-SerialNumber",
1057
+ "Firmware Revision": "0.0.0"
1058
+ },
1059
+ "values": {
1060
+ "Version": "1.1.0"
1061
+ },
1062
+ "instance": {
1063
+ "name": "ECI-T24F2",
1064
+ "username": "5C:EE:FE:4D:64:B4",
1065
+ "ipAddress": "192.168.1.11",
1066
+ "port": 39757,
1067
+ "services": [],
1068
+ "connectionFailedCount": 0,
1069
+ "configurationNumber": "3"
1070
+ },
1071
+ "uniqueId": "660f0569500a9c2570f435943368c4f33c9a9c5162f366c66c1eb520f874c84e"
1072
+ },
1073
+ {
1074
+ "aid": 1,
1075
+ "iid": 2000000008,
1076
+ "uuid": "000000A2-0000-1000-8000-0026BB765291",
1077
+ "type": "ProtocolInformation",
1078
+ "humanType": "Protocol Information",
1079
+ "serviceName": "EufySecurity 9F7C",
1080
+ "serviceCharacteristics": [
1081
+ {
1082
+ "aid": 1,
1083
+ "iid": 9,
1084
+ "uuid": "00000037-0000-1000-8000-0026BB765291",
1085
+ "type": "Version",
1086
+ "serviceType": "ProtocolInformation",
1003
1087
  "serviceName": "EufySecurity 9F7C",
1004
- "serviceCharacteristics": [
1005
- {
1006
- "aid": 1,
1007
- "iid": 9,
1008
- "uuid": "00000037-0000-1000-8000-0026BB765291",
1009
- "type": "Version",
1010
- "serviceType": "ProtocolInformation",
1011
- "serviceName": "EufySecurity 9F7C",
1012
- "description": "Version",
1013
- "value": "1.1.0",
1014
- "format": "string",
1015
- "perms": [
1016
- "pr"
1017
- ],
1018
- "canRead": true,
1019
- "canWrite": false,
1020
- "ev": false
1021
- }
1022
- ],
1023
- "accessoryInformation": {
1024
- "Manufacturer": "homebridge.io",
1025
- "Model": "homebridge",
1026
- "Name": "EufySecurity 9F7C",
1027
- "Serial Number": "0E:89:A7:DA:D3:21",
1028
- "Firmware Revision": "1.8.5"
1029
- },
1030
- "values": {
1031
- "Version": "1.1.0"
1032
- },
1033
- "instance": {
1034
- "name": "homebridge",
1035
- "username": "0E:89:A7:DA:D3:21",
1036
- "ipAddress": "192.168.1.11",
1037
- "port": 40929,
1038
- "services": [],
1039
- "connectionFailedCount": 0,
1040
- "configurationNumber": "21"
1041
- },
1042
- "uniqueId": "c516aeaf2812436318a5aee6443ee633a459015a07676d78c73ca9decdf899b2"
1088
+ "description": "Version",
1089
+ "value": "1.1.0",
1090
+ "format": "string",
1091
+ "perms": [
1092
+ "pr"
1093
+ ],
1094
+ "canRead": true,
1095
+ "canWrite": false,
1096
+ "ev": false
1097
+ }
1098
+ ],
1099
+ "accessoryInformation": {
1100
+ "Manufacturer": "homebridge.io",
1101
+ "Model": "homebridge",
1102
+ "Name": "EufySecurity 9F7C",
1103
+ "Serial Number": "0E:89:A7:DA:D3:21",
1104
+ "Firmware Revision": "1.8.5"
1105
+ },
1106
+ "values": {
1107
+ "Version": "1.1.0"
1108
+ },
1109
+ "instance": {
1110
+ "name": "homebridge",
1111
+ "username": "0E:89:A7:DA:D3:21",
1112
+ "ipAddress": "192.168.1.11",
1113
+ "port": 40929,
1114
+ "services": [],
1115
+ "connectionFailedCount": 0,
1116
+ "configurationNumber": "21"
1117
+ },
1118
+ "uniqueId": "c516aeaf2812436318a5aee6443ee633a459015a07676d78c73ca9decdf899b2"
1119
+ },
1120
+ {
1121
+ "aid": 6,
1122
+ "iid": 9,
1123
+ "uuid": "0000021A-0000-1000-8000-0026BB765291",
1124
+ "type": "CameraOperatingMode",
1125
+ "humanType": "Camera Operating Mode",
1126
+ "serviceName": "Backyard",
1127
+ "serviceCharacteristics": [
1128
+ {
1129
+ "aid": 6,
1130
+ "iid": 12,
1131
+ "uuid": "0000021B-0000-1000-8000-0026BB765291",
1132
+ "type": "HomeKitCameraActive",
1133
+ "serviceType": "CameraOperatingMode",
1134
+ "serviceName": "Backyard",
1135
+ "description": "HomeKit Camera Active",
1136
+ "value": 1,
1137
+ "format": "uint8",
1138
+ "perms": [
1139
+ "ev",
1140
+ "pr",
1141
+ "pw"
1142
+ ],
1143
+ "maxValue": 1,
1144
+ "minValue": 0,
1145
+ "canRead": true,
1146
+ "canWrite": true,
1147
+ "ev": true
1043
1148
  },
1044
1149
  {
1045
1150
  "aid": 6,
1046
- "iid": 9,
1047
- "uuid": "0000021A-0000-1000-8000-0026BB765291",
1048
- "type": "CameraOperatingMode",
1049
- "humanType": "Camera Operating Mode",
1151
+ "iid": 13,
1152
+ "uuid": "00000227-0000-1000-8000-0026BB765291",
1153
+ "type": "ManuallyDisabled",
1154
+ "serviceType": "CameraOperatingMode",
1050
1155
  "serviceName": "Backyard",
1051
- "serviceCharacteristics": [
1052
- {
1053
- "aid": 6,
1054
- "iid": 12,
1055
- "uuid": "0000021B-0000-1000-8000-0026BB765291",
1056
- "type": "HomeKitCameraActive",
1057
- "serviceType": "CameraOperatingMode",
1058
- "serviceName": "Backyard",
1059
- "description": "HomeKit Camera Active",
1060
- "value": 1,
1061
- "format": "uint8",
1062
- "perms": [
1063
- "ev",
1064
- "pr",
1065
- "pw"
1066
- ],
1067
- "maxValue": 1,
1068
- "minValue": 0,
1069
- "canRead": true,
1070
- "canWrite": true,
1071
- "ev": true
1072
- },
1073
- {
1074
- "aid": 6,
1075
- "iid": 13,
1076
- "uuid": "00000227-0000-1000-8000-0026BB765291",
1077
- "type": "ManuallyDisabled",
1078
- "serviceType": "CameraOperatingMode",
1079
- "serviceName": "Backyard",
1080
- "description": "Manually Disabled",
1081
- "value": 0,
1082
- "format": "bool",
1083
- "perms": [
1084
- "ev",
1085
- "pr"
1086
- ],
1087
- "canRead": true,
1088
- "canWrite": false,
1089
- "ev": true
1090
- },
1091
- {
1092
- "aid": 6,
1093
- "iid": 14,
1094
- "uuid": "0000021D-0000-1000-8000-0026BB765291",
1095
- "type": "CameraOperatingModeIndicator",
1096
- "serviceType": "CameraOperatingMode",
1097
- "serviceName": "Backyard",
1098
- "description": "Camera Operating Mode Indicator",
1099
- "value": 1,
1100
- "format": "bool",
1101
- "perms": [
1102
- "ev",
1103
- "pr",
1104
- "pw",
1105
- "tw"
1106
- ],
1107
- "canRead": true,
1108
- "canWrite": true,
1109
- "ev": true
1110
- },
1111
- {
1112
- "aid": 6,
1113
- "iid": 15,
1114
- "uuid": "0000011B-0000-1000-8000-0026BB765291",
1115
- "type": "NightVision",
1116
- "serviceType": "CameraOperatingMode",
1117
- "serviceName": "Backyard",
1118
- "description": "Night Vision",
1119
- "value": 1,
1120
- "format": "bool",
1121
- "perms": [
1122
- "ev",
1123
- "pr",
1124
- "pw",
1125
- "tw"
1126
- ],
1127
- "canRead": true,
1128
- "canWrite": true,
1129
- "ev": true
1130
- },
1131
- {
1132
- "aid": 6,
1133
- "iid": 11,
1134
- "uuid": "00000223-0000-1000-8000-0026BB765291",
1135
- "type": "EventSnapshotsActive",
1136
- "serviceType": "CameraOperatingMode",
1137
- "serviceName": "Backyard",
1138
- "description": "Event Snapshots Active",
1139
- "value": 0,
1140
- "format": "uint8",
1141
- "perms": [
1142
- "ev",
1143
- "pr",
1144
- "pw"
1145
- ],
1146
- "maxValue": 1,
1147
- "minValue": 0,
1148
- "canRead": true,
1149
- "canWrite": true,
1150
- "ev": true
1151
- }
1152
- ],
1153
- "accessoryInformation": {
1154
- "Manufacturer": "Eufy",
1155
- "Model": "INDOOR_CAMERA",
1156
- "Name": "Backyard",
1157
- "Serial Number": "T8400P2020283341",
1158
- "Firmware Revision": "2.2.0.2",
1159
- "Hardware Revision": "P2"
1160
- },
1161
- "values": {
1162
- "HomeKitCameraActive": 1,
1163
- "ManuallyDisabled": 0,
1164
- "CameraOperatingModeIndicator": 1,
1165
- "NightVision": 1,
1166
- "EventSnapshotsActive": 0
1167
- },
1168
- "instance": {
1169
- "name": "homebridge",
1170
- "username": "0E:89:A7:DA:D3:21",
1171
- "ipAddress": "192.168.1.11",
1172
- "port": 40929,
1173
- "services": [],
1174
- "connectionFailedCount": 0,
1175
- "configurationNumber": "21"
1176
- },
1177
- "uniqueId": "260fba559f22053724ac5561be62f8e803281c3c8c82f872e05d839fc3fa95de"
1156
+ "description": "Manually Disabled",
1157
+ "value": 0,
1158
+ "format": "bool",
1159
+ "perms": [
1160
+ "ev",
1161
+ "pr"
1162
+ ],
1163
+ "canRead": true,
1164
+ "canWrite": false,
1165
+ "ev": true
1178
1166
  },
1179
1167
  {
1180
1168
  "aid": 6,
1181
- "iid": 16,
1182
- "uuid": "00000085-0000-1000-8000-0026BB765291",
1183
- "type": "MotionSensor",
1184
- "humanType": "Motion Sensor",
1169
+ "iid": 14,
1170
+ "uuid": "0000021D-0000-1000-8000-0026BB765291",
1171
+ "type": "CameraOperatingModeIndicator",
1172
+ "serviceType": "CameraOperatingMode",
1185
1173
  "serviceName": "Backyard",
1186
- "serviceCharacteristics": [
1187
- {
1188
- "aid": 6,
1189
- "iid": 18,
1190
- "uuid": "00000022-0000-1000-8000-0026BB765291",
1191
- "type": "MotionDetected",
1192
- "serviceType": "MotionSensor",
1193
- "serviceName": "Backyard",
1194
- "description": "Motion Detected",
1195
- "value": 0,
1196
- "format": "bool",
1197
- "perms": [
1198
- "ev",
1199
- "pr"
1200
- ],
1201
- "canRead": true,
1202
- "canWrite": false,
1203
- "ev": true
1204
- }
1205
- ],
1206
- "accessoryInformation": {
1207
- "Manufacturer": "Eufy",
1208
- "Model": "INDOOR_CAMERA",
1209
- "Name": "Backyard",
1210
- "Serial Number": "T8400P2020283341",
1211
- "Firmware Revision": "2.2.0.2",
1212
- "Hardware Revision": "P2"
1213
- },
1214
- "values": {
1215
- "MotionDetected": 0
1216
- },
1217
- "instance": {
1218
- "name": "homebridge",
1219
- "username": "0E:89:A7:DA:D3:21",
1220
- "ipAddress": "192.168.1.11",
1221
- "port": 40929,
1222
- "services": [],
1223
- "connectionFailedCount": 0,
1224
- "configurationNumber": "21"
1225
- },
1226
- "uniqueId": "c9efb02acc5cabb2b164d4c479355551a6360345571b31de50e90f4a1fa42df6"
1174
+ "description": "Camera Operating Mode Indicator",
1175
+ "value": 1,
1176
+ "format": "bool",
1177
+ "perms": [
1178
+ "ev",
1179
+ "pr",
1180
+ "pw",
1181
+ "tw"
1182
+ ],
1183
+ "canRead": true,
1184
+ "canWrite": true,
1185
+ "ev": true
1227
1186
  },
1228
1187
  {
1229
1188
  "aid": 6,
1230
- "iid": 19,
1231
- "uuid": "00000110-0000-1000-8000-0026BB765291",
1232
- "type": "CameraRTPStreamManagement",
1233
- "humanType": "Camera Rtp Stream Management",
1189
+ "iid": 15,
1190
+ "uuid": "0000011B-0000-1000-8000-0026BB765291",
1191
+ "type": "NightVision",
1192
+ "serviceType": "CameraOperatingMode",
1234
1193
  "serviceName": "Backyard",
1235
- "serviceCharacteristics": [
1236
- {
1237
- "aid": 6,
1238
- "iid": 22,
1239
- "uuid": "00000120-0000-1000-8000-0026BB765291",
1240
- "type": "StreamingStatus",
1241
- "serviceType": "CameraRTPStreamManagement",
1242
- "serviceName": "Backyard",
1243
- "description": "Streaming Status",
1244
- "value": "AQEA",
1245
- "format": "tlv8",
1246
- "perms": [
1247
- "ev",
1248
- "pr"
1249
- ],
1250
- "canRead": true,
1251
- "canWrite": false,
1252
- "ev": true
1253
- },
1254
- {
1255
- "aid": 6,
1256
- "iid": 23,
1257
- "uuid": "00000115-0000-1000-8000-0026BB765291",
1258
- "type": "SupportedAudioStreamConfiguration",
1259
- "serviceType": "CameraRTPStreamManagement",
1260
- "serviceName": "Backyard",
1261
- "description": "Supported Audio Stream Configuration",
1262
- "value": "AQ4BAQICCQEBAQIBAAMBAQIBAA==",
1263
- "format": "tlv8",
1264
- "perms": [
1265
- "pr"
1266
- ],
1267
- "canRead": true,
1268
- "canWrite": false,
1269
- "ev": false
1270
- },
1271
- {
1272
- "aid": 6,
1273
- "iid": 24,
1274
- "uuid": "00000116-0000-1000-8000-0026BB765291",
1275
- "type": "SupportedRTPConfiguration",
1276
- "serviceType": "CameraRTPStreamManagement",
1277
- "serviceName": "Backyard",
1278
- "description": "Supported RTP Configuration",
1279
- "value": "AgEA",
1280
- "format": "tlv8",
1281
- "perms": [
1282
- "pr"
1283
- ],
1284
- "canRead": true,
1285
- "canWrite": false,
1286
- "ev": false
1287
- },
1288
- {
1289
- "aid": 6,
1290
- "iid": 25,
1291
- "uuid": "00000114-0000-1000-8000-0026BB765291",
1292
- "type": "SupportedVideoStreamConfiguration",
1293
- "serviceType": "CameraRTPStreamManagement",
1294
- "serviceName": "Backyard",
1295
- "description": "Supported Video Stream Configuration",
1296
- "value": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
1297
- "format": "tlv8",
1298
- "perms": [
1299
- "pr"
1300
- ],
1301
- "canRead": true,
1302
- "canWrite": false,
1303
- "ev": false
1304
- },
1305
- {
1306
- "aid": 6,
1307
- "iid": 26,
1308
- "uuid": "000000B0-0000-1000-8000-0026BB765291",
1309
- "type": "Active",
1310
- "serviceType": "CameraRTPStreamManagement",
1311
- "serviceName": "Backyard",
1312
- "description": "Active",
1313
- "value": 1,
1314
- "format": "uint8",
1315
- "perms": [
1316
- "ev",
1317
- "pr",
1318
- "pw"
1319
- ],
1320
- "maxValue": 1,
1321
- "minValue": 0,
1322
- "minStep": 1,
1323
- "canRead": true,
1324
- "canWrite": true,
1325
- "ev": true
1326
- },
1327
- {
1328
- "aid": 6,
1329
- "iid": 20,
1330
- "uuid": "00000117-0000-1000-8000-0026BB765291",
1331
- "type": "SelectedRTPStreamConfiguration",
1332
- "serviceType": "CameraRTPStreamManagement",
1333
- "serviceName": "Backyard",
1334
- "description": "Selected RTP Stream Configuration",
1335
- "value": "AQMCAQI=",
1336
- "format": "tlv8",
1337
- "perms": [
1338
- "pr",
1339
- "pw"
1340
- ],
1341
- "canRead": true,
1342
- "canWrite": true,
1343
- "ev": false
1344
- },
1345
- {
1346
- "aid": 6,
1347
- "iid": 21,
1348
- "uuid": "00000118-0000-1000-8000-0026BB765291",
1349
- "type": "SetupEndpoints",
1350
- "serviceType": "CameraRTPStreamManagement",
1351
- "serviceName": "Backyard",
1352
- "description": "Setup Endpoints",
1353
- "value": "AgEC",
1354
- "format": "tlv8",
1355
- "perms": [
1356
- "pr",
1357
- "pw"
1358
- ],
1359
- "canRead": true,
1360
- "canWrite": true,
1361
- "ev": false
1362
- }
1363
- ],
1364
- "accessoryInformation": {
1365
- "Manufacturer": "Eufy",
1366
- "Model": "INDOOR_CAMERA",
1367
- "Name": "Backyard",
1368
- "Serial Number": "T8400P2020283341",
1369
- "Firmware Revision": "2.2.0.2",
1370
- "Hardware Revision": "P2"
1371
- },
1372
- "values": {
1373
- "StreamingStatus": "AQEA",
1374
- "SupportedAudioStreamConfiguration": "AQ4BAQICCQEBAQIBAAMBAQIBAA==",
1375
- "SupportedRTPConfiguration": "AgEA",
1376
- "SupportedVideoStreamConfiguration": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
1377
- "Active": 1,
1378
- "SelectedRTPStreamConfiguration": "AQMCAQI=",
1379
- "SetupEndpoints": "AgEC"
1380
- },
1381
- "instance": {
1382
- "name": "homebridge",
1383
- "username": "0E:89:A7:DA:D3:21",
1384
- "ipAddress": "192.168.1.11",
1385
- "port": 40929,
1386
- "services": [],
1387
- "connectionFailedCount": 0,
1388
- "configurationNumber": "21"
1389
- },
1390
- "uniqueId": "924c9390e6a89452936dfff957faa127d87e78e3c1b5084863495a184804fe56"
1194
+ "description": "Night Vision",
1195
+ "value": 1,
1196
+ "format": "bool",
1197
+ "perms": [
1198
+ "ev",
1199
+ "pr",
1200
+ "pw",
1201
+ "tw"
1202
+ ],
1203
+ "canRead": true,
1204
+ "canWrite": true,
1205
+ "ev": true
1391
1206
  },
1392
1207
  {
1393
1208
  "aid": 6,
1394
- "iid": 27,
1395
- "uuid": "00000110-0000-1000-8000-0026BB765291",
1396
- "type": "CameraRTPStreamManagement",
1397
- "humanType": "Camera Rtp Stream Management",
1209
+ "iid": 11,
1210
+ "uuid": "00000223-0000-1000-8000-0026BB765291",
1211
+ "type": "EventSnapshotsActive",
1212
+ "serviceType": "CameraOperatingMode",
1213
+ "serviceName": "Backyard",
1214
+ "description": "Event Snapshots Active",
1215
+ "value": 0,
1216
+ "format": "uint8",
1217
+ "perms": [
1218
+ "ev",
1219
+ "pr",
1220
+ "pw"
1221
+ ],
1222
+ "maxValue": 1,
1223
+ "minValue": 0,
1224
+ "canRead": true,
1225
+ "canWrite": true,
1226
+ "ev": true
1227
+ }
1228
+ ],
1229
+ "accessoryInformation": {
1230
+ "Manufacturer": "Eufy",
1231
+ "Model": "INDOOR_CAMERA",
1232
+ "Name": "Backyard",
1233
+ "Serial Number": "T8400P2020283341",
1234
+ "Firmware Revision": "2.2.0.2",
1235
+ "Hardware Revision": "P2"
1236
+ },
1237
+ "values": {
1238
+ "HomeKitCameraActive": 1,
1239
+ "ManuallyDisabled": 0,
1240
+ "CameraOperatingModeIndicator": 1,
1241
+ "NightVision": 1,
1242
+ "EventSnapshotsActive": 0
1243
+ },
1244
+ "instance": {
1245
+ "name": "homebridge",
1246
+ "username": "0E:89:A7:DA:D3:21",
1247
+ "ipAddress": "192.168.1.11",
1248
+ "port": 40929,
1249
+ "services": [],
1250
+ "connectionFailedCount": 0,
1251
+ "configurationNumber": "21"
1252
+ },
1253
+ "uniqueId": "260fba559f22053724ac5561be62f8e803281c3c8c82f872e05d839fc3fa95de"
1254
+ },
1255
+ {
1256
+ "aid": 6,
1257
+ "iid": 16,
1258
+ "uuid": "00000085-0000-1000-8000-0026BB765291",
1259
+ "type": "MotionSensor",
1260
+ "humanType": "Motion Sensor",
1261
+ "serviceName": "Backyard",
1262
+ "serviceCharacteristics": [
1263
+ {
1264
+ "aid": 6,
1265
+ "iid": 18,
1266
+ "uuid": "00000022-0000-1000-8000-0026BB765291",
1267
+ "type": "MotionDetected",
1268
+ "serviceType": "MotionSensor",
1269
+ "serviceName": "Backyard",
1270
+ "description": "Motion Detected",
1271
+ "value": 0,
1272
+ "format": "bool",
1273
+ "perms": [
1274
+ "ev",
1275
+ "pr"
1276
+ ],
1277
+ "canRead": true,
1278
+ "canWrite": false,
1279
+ "ev": true
1280
+ }
1281
+ ],
1282
+ "accessoryInformation": {
1283
+ "Manufacturer": "Eufy",
1284
+ "Model": "INDOOR_CAMERA",
1285
+ "Name": "Backyard",
1286
+ "Serial Number": "T8400P2020283341",
1287
+ "Firmware Revision": "2.2.0.2",
1288
+ "Hardware Revision": "P2"
1289
+ },
1290
+ "values": {
1291
+ "MotionDetected": 0
1292
+ },
1293
+ "instance": {
1294
+ "name": "homebridge",
1295
+ "username": "0E:89:A7:DA:D3:21",
1296
+ "ipAddress": "192.168.1.11",
1297
+ "port": 40929,
1298
+ "services": [],
1299
+ "connectionFailedCount": 0,
1300
+ "configurationNumber": "21"
1301
+ },
1302
+ "uniqueId": "c9efb02acc5cabb2b164d4c479355551a6360345571b31de50e90f4a1fa42df6"
1303
+ },
1304
+ {
1305
+ "aid": 6,
1306
+ "iid": 19,
1307
+ "uuid": "00000110-0000-1000-8000-0026BB765291",
1308
+ "type": "CameraRTPStreamManagement",
1309
+ "humanType": "Camera Rtp Stream Management",
1310
+ "serviceName": "Backyard",
1311
+ "serviceCharacteristics": [
1312
+ {
1313
+ "aid": 6,
1314
+ "iid": 22,
1315
+ "uuid": "00000120-0000-1000-8000-0026BB765291",
1316
+ "type": "StreamingStatus",
1317
+ "serviceType": "CameraRTPStreamManagement",
1318
+ "serviceName": "Backyard",
1319
+ "description": "Streaming Status",
1320
+ "value": "AQEA",
1321
+ "format": "tlv8",
1322
+ "perms": [
1323
+ "ev",
1324
+ "pr"
1325
+ ],
1326
+ "canRead": true,
1327
+ "canWrite": false,
1328
+ "ev": true
1329
+ },
1330
+ {
1331
+ "aid": 6,
1332
+ "iid": 23,
1333
+ "uuid": "00000115-0000-1000-8000-0026BB765291",
1334
+ "type": "SupportedAudioStreamConfiguration",
1335
+ "serviceType": "CameraRTPStreamManagement",
1336
+ "serviceName": "Backyard",
1337
+ "description": "Supported Audio Stream Configuration",
1338
+ "value": "AQ4BAQICCQEBAQIBAAMBAQIBAA==",
1339
+ "format": "tlv8",
1340
+ "perms": [
1341
+ "pr"
1342
+ ],
1343
+ "canRead": true,
1344
+ "canWrite": false,
1345
+ "ev": false
1346
+ },
1347
+ {
1348
+ "aid": 6,
1349
+ "iid": 24,
1350
+ "uuid": "00000116-0000-1000-8000-0026BB765291",
1351
+ "type": "SupportedRTPConfiguration",
1352
+ "serviceType": "CameraRTPStreamManagement",
1353
+ "serviceName": "Backyard",
1354
+ "description": "Supported RTP Configuration",
1355
+ "value": "AgEA",
1356
+ "format": "tlv8",
1357
+ "perms": [
1358
+ "pr"
1359
+ ],
1360
+ "canRead": true,
1361
+ "canWrite": false,
1362
+ "ev": false
1363
+ },
1364
+ {
1365
+ "aid": 6,
1366
+ "iid": 25,
1367
+ "uuid": "00000114-0000-1000-8000-0026BB765291",
1368
+ "type": "SupportedVideoStreamConfiguration",
1369
+ "serviceType": "CameraRTPStreamManagement",
1398
1370
  "serviceName": "Backyard",
1399
- "serviceCharacteristics": [
1400
- {
1401
- "aid": 6,
1402
- "iid": 30,
1403
- "uuid": "00000120-0000-1000-8000-0026BB765291",
1404
- "type": "StreamingStatus",
1405
- "serviceType": "CameraRTPStreamManagement",
1406
- "serviceName": "Backyard",
1407
- "description": "Streaming Status",
1408
- "value": "AQEA",
1409
- "format": "tlv8",
1410
- "perms": [
1411
- "ev",
1412
- "pr"
1413
- ],
1414
- "canRead": true,
1415
- "canWrite": false,
1416
- "ev": true
1417
- },
1418
- {
1419
- "aid": 6,
1420
- "iid": 31,
1421
- "uuid": "00000115-0000-1000-8000-0026BB765291",
1422
- "type": "SupportedAudioStreamConfiguration",
1423
- "serviceType": "CameraRTPStreamManagement",
1424
- "serviceName": "Backyard",
1425
- "description": "Supported Audio Stream Configuration",
1426
- "value": "AQ4BAQICCQEBAQIBAAMBAQIBAA==",
1427
- "format": "tlv8",
1428
- "perms": [
1429
- "pr"
1430
- ],
1431
- "canRead": true,
1432
- "canWrite": false,
1433
- "ev": false
1434
- },
1435
- {
1436
- "aid": 6,
1437
- "iid": 32,
1438
- "uuid": "00000116-0000-1000-8000-0026BB765291",
1439
- "type": "SupportedRTPConfiguration",
1440
- "serviceType": "CameraRTPStreamManagement",
1441
- "serviceName": "Backyard",
1442
- "description": "Supported RTP Configuration",
1443
- "value": "AgEA",
1444
- "format": "tlv8",
1445
- "perms": [
1446
- "pr"
1447
- ],
1448
- "canRead": true,
1449
- "canWrite": false,
1450
- "ev": false
1451
- },
1452
- {
1453
- "aid": 6,
1454
- "iid": 33,
1455
- "uuid": "00000114-0000-1000-8000-0026BB765291",
1456
- "type": "SupportedVideoStreamConfiguration",
1457
- "serviceType": "CameraRTPStreamManagement",
1458
- "serviceName": "Backyard",
1459
- "description": "Supported Video Stream Configuration",
1460
- "value": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
1461
- "format": "tlv8",
1462
- "perms": [
1463
- "pr"
1464
- ],
1465
- "canRead": true,
1466
- "canWrite": false,
1467
- "ev": false
1468
- },
1469
- {
1470
- "aid": 6,
1471
- "iid": 34,
1472
- "uuid": "000000B0-0000-1000-8000-0026BB765291",
1473
- "type": "Active",
1474
- "serviceType": "CameraRTPStreamManagement",
1475
- "serviceName": "Backyard",
1476
- "description": "Active",
1477
- "value": 1,
1478
- "format": "uint8",
1479
- "perms": [
1480
- "ev",
1481
- "pr",
1482
- "pw"
1483
- ],
1484
- "maxValue": 1,
1485
- "minValue": 0,
1486
- "minStep": 1,
1487
- "canRead": true,
1488
- "canWrite": true,
1489
- "ev": true
1490
- },
1491
- {
1492
- "aid": 6,
1493
- "iid": 28,
1494
- "uuid": "00000117-0000-1000-8000-0026BB765291",
1495
- "type": "SelectedRTPStreamConfiguration",
1496
- "serviceType": "CameraRTPStreamManagement",
1497
- "serviceName": "Backyard",
1498
- "description": "Selected RTP Stream Configuration",
1499
- "value": "AQMCAQI=",
1500
- "format": "tlv8",
1501
- "perms": [
1502
- "pr",
1503
- "pw"
1504
- ],
1505
- "canRead": true,
1506
- "canWrite": true,
1507
- "ev": false
1508
- },
1509
- {
1510
- "aid": 6,
1511
- "iid": 29,
1512
- "uuid": "00000118-0000-1000-8000-0026BB765291",
1513
- "type": "SetupEndpoints",
1514
- "serviceType": "CameraRTPStreamManagement",
1515
- "serviceName": "Backyard",
1516
- "description": "Setup Endpoints",
1517
- "value": "AgEC",
1518
- "format": "tlv8",
1519
- "perms": [
1520
- "pr",
1521
- "pw"
1522
- ],
1523
- "canRead": true,
1524
- "canWrite": true,
1525
- "ev": false
1526
- }
1527
- ],
1528
- "accessoryInformation": {
1529
- "Manufacturer": "Eufy",
1530
- "Model": "INDOOR_CAMERA",
1531
- "Name": "Backyard",
1532
- "Serial Number": "T8400P2020283341",
1533
- "Firmware Revision": "2.2.0.2",
1534
- "Hardware Revision": "P2"
1535
- },
1536
- "values": {
1537
- "StreamingStatus": "AQEA",
1538
- "SupportedAudioStreamConfiguration": "AQ4BAQICCQEBAQIBAAMBAQIBAA==",
1539
- "SupportedRTPConfiguration": "AgEA",
1540
- "SupportedVideoStreamConfiguration": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
1541
- "Active": 1,
1542
- "SelectedRTPStreamConfiguration": "AQMCAQI=",
1543
- "SetupEndpoints": "AgEC"
1544
- },
1545
- "instance": {
1546
- "name": "homebridge",
1547
- "username": "0E:89:A7:DA:D3:21",
1548
- "ipAddress": "192.168.1.11",
1549
- "port": 40929,
1550
- "services": [],
1551
- "connectionFailedCount": 0,
1552
- "configurationNumber": "21"
1553
- },
1554
- "uniqueId": "17e308a4de9af9ba95e5bcd32c1f56516403b14855f3397e8a48135e9cc78f14"
1371
+ "description": "Supported Video Stream Configuration",
1372
+ "value": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
1373
+ "format": "tlv8",
1374
+ "perms": [
1375
+ "pr"
1376
+ ],
1377
+ "canRead": true,
1378
+ "canWrite": false,
1379
+ "ev": false
1380
+ },
1381
+ {
1382
+ "aid": 6,
1383
+ "iid": 26,
1384
+ "uuid": "000000B0-0000-1000-8000-0026BB765291",
1385
+ "type": "Active",
1386
+ "serviceType": "CameraRTPStreamManagement",
1387
+ "serviceName": "Backyard",
1388
+ "description": "Active",
1389
+ "value": 1,
1390
+ "format": "uint8",
1391
+ "perms": [
1392
+ "ev",
1393
+ "pr",
1394
+ "pw"
1395
+ ],
1396
+ "maxValue": 1,
1397
+ "minValue": 0,
1398
+ "minStep": 1,
1399
+ "canRead": true,
1400
+ "canWrite": true,
1401
+ "ev": true
1402
+ },
1403
+ {
1404
+ "aid": 6,
1405
+ "iid": 20,
1406
+ "uuid": "00000117-0000-1000-8000-0026BB765291",
1407
+ "type": "SelectedRTPStreamConfiguration",
1408
+ "serviceType": "CameraRTPStreamManagement",
1409
+ "serviceName": "Backyard",
1410
+ "description": "Selected RTP Stream Configuration",
1411
+ "value": "AQMCAQI=",
1412
+ "format": "tlv8",
1413
+ "perms": [
1414
+ "pr",
1415
+ "pw"
1416
+ ],
1417
+ "canRead": true,
1418
+ "canWrite": true,
1419
+ "ev": false
1420
+ },
1421
+ {
1422
+ "aid": 6,
1423
+ "iid": 21,
1424
+ "uuid": "00000118-0000-1000-8000-0026BB765291",
1425
+ "type": "SetupEndpoints",
1426
+ "serviceType": "CameraRTPStreamManagement",
1427
+ "serviceName": "Backyard",
1428
+ "description": "Setup Endpoints",
1429
+ "value": "AgEC",
1430
+ "format": "tlv8",
1431
+ "perms": [
1432
+ "pr",
1433
+ "pw"
1434
+ ],
1435
+ "canRead": true,
1436
+ "canWrite": true,
1437
+ "ev": false
1438
+ }
1439
+ ],
1440
+ "accessoryInformation": {
1441
+ "Manufacturer": "Eufy",
1442
+ "Model": "INDOOR_CAMERA",
1443
+ "Name": "Backyard",
1444
+ "Serial Number": "T8400P2020283341",
1445
+ "Firmware Revision": "2.2.0.2",
1446
+ "Hardware Revision": "P2"
1447
+ },
1448
+ "values": {
1449
+ "StreamingStatus": "AQEA",
1450
+ "SupportedAudioStreamConfiguration": "AQ4BAQICCQEBAQIBAAMBAQIBAA==",
1451
+ "SupportedRTPConfiguration": "AgEA",
1452
+ "SupportedVideoStreamConfiguration": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
1453
+ "Active": 1,
1454
+ "SelectedRTPStreamConfiguration": "AQMCAQI=",
1455
+ "SetupEndpoints": "AgEC"
1456
+ },
1457
+ "instance": {
1458
+ "name": "homebridge",
1459
+ "username": "0E:89:A7:DA:D3:21",
1460
+ "ipAddress": "192.168.1.11",
1461
+ "port": 40929,
1462
+ "services": [],
1463
+ "connectionFailedCount": 0,
1464
+ "configurationNumber": "21"
1465
+ },
1466
+ "uniqueId": "924c9390e6a89452936dfff957faa127d87e78e3c1b5084863495a184804fe56"
1467
+ },
1468
+ {
1469
+ "aid": 6,
1470
+ "iid": 27,
1471
+ "uuid": "00000110-0000-1000-8000-0026BB765291",
1472
+ "type": "CameraRTPStreamManagement",
1473
+ "humanType": "Camera Rtp Stream Management",
1474
+ "serviceName": "Backyard",
1475
+ "serviceCharacteristics": [
1476
+ {
1477
+ "aid": 6,
1478
+ "iid": 30,
1479
+ "uuid": "00000120-0000-1000-8000-0026BB765291",
1480
+ "type": "StreamingStatus",
1481
+ "serviceType": "CameraRTPStreamManagement",
1482
+ "serviceName": "Backyard",
1483
+ "description": "Streaming Status",
1484
+ "value": "AQEA",
1485
+ "format": "tlv8",
1486
+ "perms": [
1487
+ "ev",
1488
+ "pr"
1489
+ ],
1490
+ "canRead": true,
1491
+ "canWrite": false,
1492
+ "ev": true
1493
+ },
1494
+ {
1495
+ "aid": 6,
1496
+ "iid": 31,
1497
+ "uuid": "00000115-0000-1000-8000-0026BB765291",
1498
+ "type": "SupportedAudioStreamConfiguration",
1499
+ "serviceType": "CameraRTPStreamManagement",
1500
+ "serviceName": "Backyard",
1501
+ "description": "Supported Audio Stream Configuration",
1502
+ "value": "AQ4BAQICCQEBAQIBAAMBAQIBAA==",
1503
+ "format": "tlv8",
1504
+ "perms": [
1505
+ "pr"
1506
+ ],
1507
+ "canRead": true,
1508
+ "canWrite": false,
1509
+ "ev": false
1510
+ },
1511
+ {
1512
+ "aid": 6,
1513
+ "iid": 32,
1514
+ "uuid": "00000116-0000-1000-8000-0026BB765291",
1515
+ "type": "SupportedRTPConfiguration",
1516
+ "serviceType": "CameraRTPStreamManagement",
1517
+ "serviceName": "Backyard",
1518
+ "description": "Supported RTP Configuration",
1519
+ "value": "AgEA",
1520
+ "format": "tlv8",
1521
+ "perms": [
1522
+ "pr"
1523
+ ],
1524
+ "canRead": true,
1525
+ "canWrite": false,
1526
+ "ev": false
1555
1527
  },
1528
+ {
1529
+ "aid": 6,
1530
+ "iid": 33,
1531
+ "uuid": "00000114-0000-1000-8000-0026BB765291",
1532
+ "type": "SupportedVideoStreamConfiguration",
1533
+ "serviceType": "CameraRTPStreamManagement",
1534
+ "serviceName": "Backyard",
1535
+ "description": "Supported Video Stream Configuration",
1536
+ "value": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
1537
+ "format": "tlv8",
1538
+ "perms": [
1539
+ "pr"
1540
+ ],
1541
+ "canRead": true,
1542
+ "canWrite": false,
1543
+ "ev": false
1544
+ },
1545
+ {
1546
+ "aid": 6,
1547
+ "iid": 34,
1548
+ "uuid": "000000B0-0000-1000-8000-0026BB765291",
1549
+ "type": "Active",
1550
+ "serviceType": "CameraRTPStreamManagement",
1551
+ "serviceName": "Backyard",
1552
+ "description": "Active",
1553
+ "value": 1,
1554
+ "format": "uint8",
1555
+ "perms": [
1556
+ "ev",
1557
+ "pr",
1558
+ "pw"
1559
+ ],
1560
+ "maxValue": 1,
1561
+ "minValue": 0,
1562
+ "minStep": 1,
1563
+ "canRead": true,
1564
+ "canWrite": true,
1565
+ "ev": true
1566
+ },
1567
+ {
1568
+ "aid": 6,
1569
+ "iid": 28,
1570
+ "uuid": "00000117-0000-1000-8000-0026BB765291",
1571
+ "type": "SelectedRTPStreamConfiguration",
1572
+ "serviceType": "CameraRTPStreamManagement",
1573
+ "serviceName": "Backyard",
1574
+ "description": "Selected RTP Stream Configuration",
1575
+ "value": "AQMCAQI=",
1576
+ "format": "tlv8",
1577
+ "perms": [
1578
+ "pr",
1579
+ "pw"
1580
+ ],
1581
+ "canRead": true,
1582
+ "canWrite": true,
1583
+ "ev": false
1584
+ },
1585
+ {
1586
+ "aid": 6,
1587
+ "iid": 29,
1588
+ "uuid": "00000118-0000-1000-8000-0026BB765291",
1589
+ "type": "SetupEndpoints",
1590
+ "serviceType": "CameraRTPStreamManagement",
1591
+ "serviceName": "Backyard",
1592
+ "description": "Setup Endpoints",
1593
+ "value": "AgEC",
1594
+ "format": "tlv8",
1595
+ "perms": [
1596
+ "pr",
1597
+ "pw"
1598
+ ],
1599
+ "canRead": true,
1600
+ "canWrite": true,
1601
+ "ev": false
1602
+ }
1603
+ ],
1604
+ "accessoryInformation": {
1605
+ "Manufacturer": "Eufy",
1606
+ "Model": "INDOOR_CAMERA",
1607
+ "Name": "Backyard",
1608
+ "Serial Number": "T8400P2020283341",
1609
+ "Firmware Revision": "2.2.0.2",
1610
+ "Hardware Revision": "P2"
1611
+ },
1612
+ "values": {
1613
+ "StreamingStatus": "AQEA",
1614
+ "SupportedAudioStreamConfiguration": "AQ4BAQICCQEBAQIBAAMBAQIBAA==",
1615
+ "SupportedRTPConfiguration": "AgEA",
1616
+ "SupportedVideoStreamConfiguration": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
1617
+ "Active": 1,
1618
+ "SelectedRTPStreamConfiguration": "AQMCAQI=",
1619
+ "SetupEndpoints": "AgEC"
1620
+ },
1621
+ "instance": {
1622
+ "name": "homebridge",
1623
+ "username": "0E:89:A7:DA:D3:21",
1624
+ "ipAddress": "192.168.1.11",
1625
+ "port": 40929,
1626
+ "services": [],
1627
+ "connectionFailedCount": 0,
1628
+ "configurationNumber": "21"
1629
+ },
1630
+ "uniqueId": "17e308a4de9af9ba95e5bcd32c1f56516403b14855f3397e8a48135e9cc78f14"
1631
+ },
1632
+ {
1633
+ "aid": 7,
1634
+ "iid": 9,
1635
+ "uuid": "0000021A-0000-1000-8000-0026BB765291",
1636
+ "type": "CameraOperatingMode",
1637
+ "humanType": "Camera Operating Mode",
1638
+ "serviceName": "Side door",
1639
+ "serviceCharacteristics": [
1556
1640
  {
1557
1641
  "aid": 7,
1558
- "iid": 9,
1559
- "uuid": "0000021A-0000-1000-8000-0026BB765291",
1560
- "type": "CameraOperatingMode",
1561
- "humanType": "Camera Operating Mode",
1642
+ "iid": 12,
1643
+ "uuid": "0000021B-0000-1000-8000-0026BB765291",
1644
+ "type": "HomeKitCameraActive",
1645
+ "serviceType": "CameraOperatingMode",
1562
1646
  "serviceName": "Side door",
1563
- "serviceCharacteristics": [
1564
- {
1565
- "aid": 7,
1566
- "iid": 12,
1567
- "uuid": "0000021B-0000-1000-8000-0026BB765291",
1568
- "type": "HomeKitCameraActive",
1569
- "serviceType": "CameraOperatingMode",
1570
- "serviceName": "Side door",
1571
- "description": "HomeKit Camera Active",
1572
- "value": 1,
1573
- "format": "uint8",
1574
- "perms": [
1575
- "ev",
1576
- "pr",
1577
- "pw"
1578
- ],
1579
- "maxValue": 1,
1580
- "minValue": 0,
1581
- "canRead": true,
1582
- "canWrite": true,
1583
- "ev": true
1584
- },
1585
- {
1586
- "aid": 7,
1587
- "iid": 13,
1588
- "uuid": "00000227-0000-1000-8000-0026BB765291",
1589
- "type": "ManuallyDisabled",
1590
- "serviceType": "CameraOperatingMode",
1591
- "serviceName": "Side door",
1592
- "description": "Manually Disabled",
1593
- "value": 0,
1594
- "format": "bool",
1595
- "perms": [
1596
- "ev",
1597
- "pr"
1598
- ],
1599
- "canRead": true,
1600
- "canWrite": false,
1601
- "ev": true
1602
- },
1603
- {
1604
- "aid": 7,
1605
- "iid": 14,
1606
- "uuid": "0000021D-0000-1000-8000-0026BB765291",
1607
- "type": "CameraOperatingModeIndicator",
1608
- "serviceType": "CameraOperatingMode",
1609
- "serviceName": "Side door",
1610
- "description": "Camera Operating Mode Indicator",
1611
- "value": 1,
1612
- "format": "bool",
1613
- "perms": [
1614
- "ev",
1615
- "pr",
1616
- "pw",
1617
- "tw"
1618
- ],
1619
- "canRead": true,
1620
- "canWrite": true,
1621
- "ev": true
1622
- },
1623
- {
1624
- "aid": 7,
1625
- "iid": 15,
1626
- "uuid": "0000011B-0000-1000-8000-0026BB765291",
1627
- "type": "NightVision",
1628
- "serviceType": "CameraOperatingMode",
1629
- "serviceName": "Side door",
1630
- "description": "Night Vision",
1631
- "value": 1,
1632
- "format": "bool",
1633
- "perms": [
1634
- "ev",
1635
- "pr",
1636
- "pw",
1637
- "tw"
1638
- ],
1639
- "canRead": true,
1640
- "canWrite": true,
1641
- "ev": true
1642
- },
1643
- {
1644
- "aid": 7,
1645
- "iid": 11,
1646
- "uuid": "00000223-0000-1000-8000-0026BB765291",
1647
- "type": "EventSnapshotsActive",
1648
- "serviceType": "CameraOperatingMode",
1649
- "serviceName": "Side door",
1650
- "description": "Event Snapshots Active",
1651
- "value": 0,
1652
- "format": "uint8",
1653
- "perms": [
1654
- "ev",
1655
- "pr",
1656
- "pw"
1657
- ],
1658
- "maxValue": 1,
1659
- "minValue": 0,
1660
- "canRead": true,
1661
- "canWrite": true,
1662
- "ev": true
1663
- }
1664
- ],
1665
- "accessoryInformation": {
1666
- "Manufacturer": "Eufy",
1667
- "Model": "INDOOR_CAMERA",
1668
- "Name": "Side door",
1669
- "Serial Number": "T8400P20202844ED",
1670
- "Firmware Revision": "2.2.0.2",
1671
- "Hardware Revision": "P2"
1672
- },
1673
- "values": {
1674
- "HomeKitCameraActive": 1,
1675
- "ManuallyDisabled": 0,
1676
- "CameraOperatingModeIndicator": 1,
1677
- "NightVision": 1,
1678
- "EventSnapshotsActive": 0
1679
- },
1680
- "instance": {
1681
- "name": "homebridge",
1682
- "username": "0E:89:A7:DA:D3:21",
1683
- "ipAddress": "192.168.1.11",
1684
- "port": 40929,
1685
- "services": [],
1686
- "connectionFailedCount": 0,
1687
- "configurationNumber": "21"
1688
- },
1689
- "uniqueId": "08895731d0736b8028cfd89ba93229c24cead807a2dbdbb9b209ff771b88c31a"
1647
+ "description": "HomeKit Camera Active",
1648
+ "value": 1,
1649
+ "format": "uint8",
1650
+ "perms": [
1651
+ "ev",
1652
+ "pr",
1653
+ "pw"
1654
+ ],
1655
+ "maxValue": 1,
1656
+ "minValue": 0,
1657
+ "canRead": true,
1658
+ "canWrite": true,
1659
+ "ev": true
1690
1660
  },
1691
1661
  {
1692
1662
  "aid": 7,
1693
- "iid": 16,
1694
- "uuid": "00000085-0000-1000-8000-0026BB765291",
1695
- "type": "MotionSensor",
1696
- "humanType": "Motion Sensor",
1663
+ "iid": 13,
1664
+ "uuid": "00000227-0000-1000-8000-0026BB765291",
1665
+ "type": "ManuallyDisabled",
1666
+ "serviceType": "CameraOperatingMode",
1697
1667
  "serviceName": "Side door",
1698
- "serviceCharacteristics": [
1699
- {
1700
- "aid": 7,
1701
- "iid": 18,
1702
- "uuid": "00000022-0000-1000-8000-0026BB765291",
1703
- "type": "MotionDetected",
1704
- "serviceType": "MotionSensor",
1705
- "serviceName": "Side door",
1706
- "description": "Motion Detected",
1707
- "value": 0,
1708
- "format": "bool",
1709
- "perms": [
1710
- "ev",
1711
- "pr"
1712
- ],
1713
- "canRead": true,
1714
- "canWrite": false,
1715
- "ev": true
1716
- }
1717
- ],
1718
- "accessoryInformation": {
1719
- "Manufacturer": "Eufy",
1720
- "Model": "INDOOR_CAMERA",
1721
- "Name": "Side door",
1722
- "Serial Number": "T8400P20202844ED",
1723
- "Firmware Revision": "2.2.0.2",
1724
- "Hardware Revision": "P2"
1725
- },
1726
- "values": {
1727
- "MotionDetected": 0
1728
- },
1729
- "instance": {
1730
- "name": "homebridge",
1731
- "username": "0E:89:A7:DA:D3:21",
1732
- "ipAddress": "192.168.1.11",
1733
- "port": 40929,
1734
- "services": [],
1735
- "connectionFailedCount": 0,
1736
- "configurationNumber": "21"
1737
- },
1738
- "uniqueId": "f4827932577f2073ae5584a4a66607a1dd67af9b3e5bf22d59dffdc702d0f240"
1668
+ "description": "Manually Disabled",
1669
+ "value": 0,
1670
+ "format": "bool",
1671
+ "perms": [
1672
+ "ev",
1673
+ "pr"
1674
+ ],
1675
+ "canRead": true,
1676
+ "canWrite": false,
1677
+ "ev": true
1739
1678
  },
1740
1679
  {
1741
1680
  "aid": 7,
1742
- "iid": 19,
1743
- "uuid": "00000110-0000-1000-8000-0026BB765291",
1744
- "type": "CameraRTPStreamManagement",
1745
- "humanType": "Camera Rtp Stream Management",
1681
+ "iid": 14,
1682
+ "uuid": "0000021D-0000-1000-8000-0026BB765291",
1683
+ "type": "CameraOperatingModeIndicator",
1684
+ "serviceType": "CameraOperatingMode",
1746
1685
  "serviceName": "Side door",
1747
- "serviceCharacteristics": [
1748
- {
1749
- "aid": 7,
1750
- "iid": 22,
1751
- "uuid": "00000120-0000-1000-8000-0026BB765291",
1752
- "type": "StreamingStatus",
1753
- "serviceType": "CameraRTPStreamManagement",
1754
- "serviceName": "Side door",
1755
- "description": "Streaming Status",
1756
- "value": "AQEA",
1757
- "format": "tlv8",
1758
- "perms": [
1759
- "ev",
1760
- "pr"
1761
- ],
1762
- "canRead": true,
1763
- "canWrite": false,
1764
- "ev": true
1765
- },
1766
- {
1767
- "aid": 7,
1768
- "iid": 23,
1769
- "uuid": "00000115-0000-1000-8000-0026BB765291",
1770
- "type": "SupportedAudioStreamConfiguration",
1771
- "serviceType": "CameraRTPStreamManagement",
1772
- "serviceName": "Side door",
1773
- "description": "Supported Audio Stream Configuration",
1774
- "value": "AQ4BAQICCQEBAQIBAAMBAQIBAA==",
1775
- "format": "tlv8",
1776
- "perms": [
1777
- "pr"
1778
- ],
1779
- "canRead": true,
1780
- "canWrite": false,
1781
- "ev": false
1782
- },
1783
- {
1784
- "aid": 7,
1785
- "iid": 24,
1786
- "uuid": "00000116-0000-1000-8000-0026BB765291",
1787
- "type": "SupportedRTPConfiguration",
1788
- "serviceType": "CameraRTPStreamManagement",
1789
- "serviceName": "Side door",
1790
- "description": "Supported RTP Configuration",
1791
- "value": "AgEA",
1792
- "format": "tlv8",
1793
- "perms": [
1794
- "pr"
1795
- ],
1796
- "canRead": true,
1797
- "canWrite": false,
1798
- "ev": false
1799
- },
1800
- {
1801
- "aid": 7,
1802
- "iid": 25,
1803
- "uuid": "00000114-0000-1000-8000-0026BB765291",
1804
- "type": "SupportedVideoStreamConfiguration",
1805
- "serviceType": "CameraRTPStreamManagement",
1806
- "serviceName": "Side door",
1807
- "description": "Supported Video Stream Configuration",
1808
- "value": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
1809
- "format": "tlv8",
1810
- "perms": [
1811
- "pr"
1812
- ],
1813
- "canRead": true,
1814
- "canWrite": false,
1815
- "ev": false
1816
- },
1817
- {
1818
- "aid": 7,
1819
- "iid": 26,
1820
- "uuid": "000000B0-0000-1000-8000-0026BB765291",
1821
- "type": "Active",
1822
- "serviceType": "CameraRTPStreamManagement",
1823
- "serviceName": "Side door",
1824
- "description": "Active",
1825
- "value": 1,
1826
- "format": "uint8",
1827
- "perms": [
1828
- "ev",
1829
- "pr",
1830
- "pw"
1831
- ],
1832
- "maxValue": 1,
1833
- "minValue": 0,
1834
- "minStep": 1,
1835
- "canRead": true,
1836
- "canWrite": true,
1837
- "ev": true
1838
- },
1839
- {
1840
- "aid": 7,
1841
- "iid": 20,
1842
- "uuid": "00000117-0000-1000-8000-0026BB765291",
1843
- "type": "SelectedRTPStreamConfiguration",
1844
- "serviceType": "CameraRTPStreamManagement",
1845
- "serviceName": "Side door",
1846
- "description": "Selected RTP Stream Configuration",
1847
- "value": "AQMCAQI=",
1848
- "format": "tlv8",
1849
- "perms": [
1850
- "pr",
1851
- "pw"
1852
- ],
1853
- "canRead": true,
1854
- "canWrite": true,
1855
- "ev": false
1856
- },
1857
- {
1858
- "aid": 7,
1859
- "iid": 21,
1860
- "uuid": "00000118-0000-1000-8000-0026BB765291",
1861
- "type": "SetupEndpoints",
1862
- "serviceType": "CameraRTPStreamManagement",
1863
- "serviceName": "Side door",
1864
- "description": "Setup Endpoints",
1865
- "value": "AgEC",
1866
- "format": "tlv8",
1867
- "perms": [
1868
- "pr",
1869
- "pw"
1870
- ],
1871
- "canRead": true,
1872
- "canWrite": true,
1873
- "ev": false
1874
- }
1875
- ],
1876
- "accessoryInformation": {
1877
- "Manufacturer": "Eufy",
1878
- "Model": "INDOOR_CAMERA",
1879
- "Name": "Side door",
1880
- "Serial Number": "T8400P20202844ED",
1881
- "Firmware Revision": "2.2.0.2",
1882
- "Hardware Revision": "P2"
1883
- },
1884
- "values": {
1885
- "StreamingStatus": "AQEA",
1886
- "SupportedAudioStreamConfiguration": "AQ4BAQICCQEBAQIBAAMBAQIBAA==",
1887
- "SupportedRTPConfiguration": "AgEA",
1888
- "SupportedVideoStreamConfiguration": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
1889
- "Active": 1,
1890
- "SelectedRTPStreamConfiguration": "AQMCAQI=",
1891
- "SetupEndpoints": "AgEC"
1892
- },
1893
- "instance": {
1894
- "name": "homebridge",
1895
- "username": "0E:89:A7:DA:D3:21",
1896
- "ipAddress": "192.168.1.11",
1897
- "port": 40929,
1898
- "services": [],
1899
- "connectionFailedCount": 0,
1900
- "configurationNumber": "21"
1901
- },
1902
- "uniqueId": "e8e6aec782cd554108e95e4a61b7fa4e941f2c63b9e656e6c828ac89e26e2dbd"
1686
+ "description": "Camera Operating Mode Indicator",
1687
+ "value": 1,
1688
+ "format": "bool",
1689
+ "perms": [
1690
+ "ev",
1691
+ "pr",
1692
+ "pw",
1693
+ "tw"
1694
+ ],
1695
+ "canRead": true,
1696
+ "canWrite": true,
1697
+ "ev": true
1903
1698
  },
1904
1699
  {
1905
1700
  "aid": 7,
1906
- "iid": 27,
1907
- "uuid": "00000110-0000-1000-8000-0026BB765291",
1908
- "type": "CameraRTPStreamManagement",
1909
- "humanType": "Camera Rtp Stream Management",
1701
+ "iid": 15,
1702
+ "uuid": "0000011B-0000-1000-8000-0026BB765291",
1703
+ "type": "NightVision",
1704
+ "serviceType": "CameraOperatingMode",
1910
1705
  "serviceName": "Side door",
1911
- "serviceCharacteristics": [
1912
- {
1913
- "aid": 7,
1914
- "iid": 30,
1915
- "uuid": "00000120-0000-1000-8000-0026BB765291",
1916
- "type": "StreamingStatus",
1917
- "serviceType": "CameraRTPStreamManagement",
1918
- "serviceName": "Side door",
1919
- "description": "Streaming Status",
1920
- "value": "AQEA",
1921
- "format": "tlv8",
1922
- "perms": [
1923
- "ev",
1924
- "pr"
1925
- ],
1926
- "canRead": true,
1927
- "canWrite": false,
1928
- "ev": true
1929
- },
1930
- {
1931
- "aid": 7,
1932
- "iid": 31,
1933
- "uuid": "00000115-0000-1000-8000-0026BB765291",
1934
- "type": "SupportedAudioStreamConfiguration",
1935
- "serviceType": "CameraRTPStreamManagement",
1936
- "serviceName": "Side door",
1937
- "description": "Supported Audio Stream Configuration",
1938
- "value": "AQ4BAQICCQEBAQIBAAMBAQIBAA==",
1939
- "format": "tlv8",
1940
- "perms": [
1941
- "pr"
1942
- ],
1943
- "canRead": true,
1944
- "canWrite": false,
1945
- "ev": false
1946
- },
1947
- {
1948
- "aid": 7,
1949
- "iid": 32,
1950
- "uuid": "00000116-0000-1000-8000-0026BB765291",
1951
- "type": "SupportedRTPConfiguration",
1952
- "serviceType": "CameraRTPStreamManagement",
1953
- "serviceName": "Side door",
1954
- "description": "Supported RTP Configuration",
1955
- "value": "AgEA",
1956
- "format": "tlv8",
1957
- "perms": [
1958
- "pr"
1959
- ],
1960
- "canRead": true,
1961
- "canWrite": false,
1962
- "ev": false
1963
- },
1964
- {
1965
- "aid": 7,
1966
- "iid": 33,
1967
- "uuid": "00000114-0000-1000-8000-0026BB765291",
1968
- "type": "SupportedVideoStreamConfiguration",
1969
- "serviceType": "CameraRTPStreamManagement",
1970
- "serviceName": "Side door",
1971
- "description": "Supported Video Stream Configuration",
1972
- "value": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
1973
- "format": "tlv8",
1974
- "perms": [
1975
- "pr"
1976
- ],
1977
- "canRead": true,
1978
- "canWrite": false,
1979
- "ev": false
1980
- },
1981
- {
1982
- "aid": 7,
1983
- "iid": 34,
1984
- "uuid": "000000B0-0000-1000-8000-0026BB765291",
1985
- "type": "Active",
1986
- "serviceType": "CameraRTPStreamManagement",
1987
- "serviceName": "Side door",
1988
- "description": "Active",
1989
- "value": 1,
1990
- "format": "uint8",
1991
- "perms": [
1992
- "ev",
1993
- "pr",
1994
- "pw"
1995
- ],
1996
- "maxValue": 1,
1997
- "minValue": 0,
1998
- "minStep": 1,
1999
- "canRead": true,
2000
- "canWrite": true,
2001
- "ev": true
2002
- },
2003
- {
2004
- "aid": 7,
2005
- "iid": 28,
2006
- "uuid": "00000117-0000-1000-8000-0026BB765291",
2007
- "type": "SelectedRTPStreamConfiguration",
2008
- "serviceType": "CameraRTPStreamManagement",
2009
- "serviceName": "Side door",
2010
- "description": "Selected RTP Stream Configuration",
2011
- "value": "AQMCAQI=",
2012
- "format": "tlv8",
2013
- "perms": [
2014
- "pr",
2015
- "pw"
2016
- ],
2017
- "canRead": true,
2018
- "canWrite": true,
2019
- "ev": false
2020
- },
2021
- {
2022
- "aid": 7,
2023
- "iid": 29,
2024
- "uuid": "00000118-0000-1000-8000-0026BB765291",
2025
- "type": "SetupEndpoints",
2026
- "serviceType": "CameraRTPStreamManagement",
2027
- "serviceName": "Side door",
2028
- "description": "Setup Endpoints",
2029
- "value": "AgEC",
2030
- "format": "tlv8",
2031
- "perms": [
2032
- "pr",
2033
- "pw"
2034
- ],
2035
- "canRead": true,
2036
- "canWrite": true,
2037
- "ev": false
2038
- }
2039
- ],
2040
- "accessoryInformation": {
2041
- "Manufacturer": "Eufy",
2042
- "Model": "INDOOR_CAMERA",
2043
- "Name": "Side door",
2044
- "Serial Number": "T8400P20202844ED",
2045
- "Firmware Revision": "2.2.0.2",
2046
- "Hardware Revision": "P2"
2047
- },
2048
- "values": {
2049
- "StreamingStatus": "AQEA",
2050
- "SupportedAudioStreamConfiguration": "AQ4BAQICCQEBAQIBAAMBAQIBAA==",
2051
- "SupportedRTPConfiguration": "AgEA",
2052
- "SupportedVideoStreamConfiguration": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
2053
- "Active": 1,
2054
- "SelectedRTPStreamConfiguration": "AQMCAQI=",
2055
- "SetupEndpoints": "AgEC"
2056
- },
2057
- "instance": {
2058
- "name": "homebridge",
2059
- "username": "0E:89:A7:DA:D3:21",
2060
- "ipAddress": "192.168.1.11",
2061
- "port": 40929,
2062
- "services": [],
2063
- "connectionFailedCount": 0,
2064
- "configurationNumber": "21"
2065
- },
2066
- "uniqueId": "67fa85f535234f003c95e01c90897d1d3aff7a5523ee1b5cd593aedbebc1b30d"
1706
+ "description": "Night Vision",
1707
+ "value": 1,
1708
+ "format": "bool",
1709
+ "perms": [
1710
+ "ev",
1711
+ "pr",
1712
+ "pw",
1713
+ "tw"
1714
+ ],
1715
+ "canRead": true,
1716
+ "canWrite": true,
1717
+ "ev": true
1718
+ },
1719
+ {
1720
+ "aid": 7,
1721
+ "iid": 11,
1722
+ "uuid": "00000223-0000-1000-8000-0026BB765291",
1723
+ "type": "EventSnapshotsActive",
1724
+ "serviceType": "CameraOperatingMode",
1725
+ "serviceName": "Side door",
1726
+ "description": "Event Snapshots Active",
1727
+ "value": 0,
1728
+ "format": "uint8",
1729
+ "perms": [
1730
+ "ev",
1731
+ "pr",
1732
+ "pw"
1733
+ ],
1734
+ "maxValue": 1,
1735
+ "minValue": 0,
1736
+ "canRead": true,
1737
+ "canWrite": true,
1738
+ "ev": true
2067
1739
  }
2068
- ];
2069
- });
1740
+ ],
1741
+ "accessoryInformation": {
1742
+ "Manufacturer": "Eufy",
1743
+ "Model": "INDOOR_CAMERA",
1744
+ "Name": "Side door",
1745
+ "Serial Number": "T8400P20202844ED",
1746
+ "Firmware Revision": "2.2.0.2",
1747
+ "Hardware Revision": "P2"
1748
+ },
1749
+ "values": {
1750
+ "HomeKitCameraActive": 1,
1751
+ "ManuallyDisabled": 0,
1752
+ "CameraOperatingModeIndicator": 1,
1753
+ "NightVision": 1,
1754
+ "EventSnapshotsActive": 0
1755
+ },
1756
+ "instance": {
1757
+ "name": "homebridge",
1758
+ "username": "0E:89:A7:DA:D3:21",
1759
+ "ipAddress": "192.168.1.11",
1760
+ "port": 40929,
1761
+ "services": [],
1762
+ "connectionFailedCount": 0,
1763
+ "configurationNumber": "21"
1764
+ },
1765
+ "uniqueId": "08895731d0736b8028cfd89ba93229c24cead807a2dbdbb9b209ff771b88c31a"
1766
+ },
1767
+ {
1768
+ "aid": 7,
1769
+ "iid": 16,
1770
+ "uuid": "00000085-0000-1000-8000-0026BB765291",
1771
+ "type": "MotionSensor",
1772
+ "humanType": "Motion Sensor",
1773
+ "serviceName": "Side door",
1774
+ "serviceCharacteristics": [
1775
+ {
1776
+ "aid": 7,
1777
+ "iid": 18,
1778
+ "uuid": "00000022-0000-1000-8000-0026BB765291",
1779
+ "type": "MotionDetected",
1780
+ "serviceType": "MotionSensor",
1781
+ "serviceName": "Side door",
1782
+ "description": "Motion Detected",
1783
+ "value": 0,
1784
+ "format": "bool",
1785
+ "perms": [
1786
+ "ev",
1787
+ "pr"
1788
+ ],
1789
+ "canRead": true,
1790
+ "canWrite": false,
1791
+ "ev": true
1792
+ }
1793
+ ],
1794
+ "accessoryInformation": {
1795
+ "Manufacturer": "Eufy",
1796
+ "Model": "INDOOR_CAMERA",
1797
+ "Name": "Side door",
1798
+ "Serial Number": "T8400P20202844ED",
1799
+ "Firmware Revision": "2.2.0.2",
1800
+ "Hardware Revision": "P2"
1801
+ },
1802
+ "values": {
1803
+ "MotionDetected": 0
1804
+ },
1805
+ "instance": {
1806
+ "name": "homebridge",
1807
+ "username": "0E:89:A7:DA:D3:21",
1808
+ "ipAddress": "192.168.1.11",
1809
+ "port": 40929,
1810
+ "services": [],
1811
+ "connectionFailedCount": 0,
1812
+ "configurationNumber": "21"
1813
+ },
1814
+ "uniqueId": "f4827932577f2073ae5584a4a66607a1dd67af9b3e5bf22d59dffdc702d0f240"
1815
+ },
1816
+ {
1817
+ "aid": 7,
1818
+ "iid": 19,
1819
+ "uuid": "00000110-0000-1000-8000-0026BB765291",
1820
+ "type": "CameraRTPStreamManagement",
1821
+ "humanType": "Camera Rtp Stream Management",
1822
+ "serviceName": "Side door",
1823
+ "serviceCharacteristics": [
1824
+ {
1825
+ "aid": 7,
1826
+ "iid": 22,
1827
+ "uuid": "00000120-0000-1000-8000-0026BB765291",
1828
+ "type": "StreamingStatus",
1829
+ "serviceType": "CameraRTPStreamManagement",
1830
+ "serviceName": "Side door",
1831
+ "description": "Streaming Status",
1832
+ "value": "AQEA",
1833
+ "format": "tlv8",
1834
+ "perms": [
1835
+ "ev",
1836
+ "pr"
1837
+ ],
1838
+ "canRead": true,
1839
+ "canWrite": false,
1840
+ "ev": true
1841
+ },
1842
+ {
1843
+ "aid": 7,
1844
+ "iid": 23,
1845
+ "uuid": "00000115-0000-1000-8000-0026BB765291",
1846
+ "type": "SupportedAudioStreamConfiguration",
1847
+ "serviceType": "CameraRTPStreamManagement",
1848
+ "serviceName": "Side door",
1849
+ "description": "Supported Audio Stream Configuration",
1850
+ "value": "AQ4BAQICCQEBAQIBAAMBAQIBAA==",
1851
+ "format": "tlv8",
1852
+ "perms": [
1853
+ "pr"
1854
+ ],
1855
+ "canRead": true,
1856
+ "canWrite": false,
1857
+ "ev": false
1858
+ },
1859
+ {
1860
+ "aid": 7,
1861
+ "iid": 24,
1862
+ "uuid": "00000116-0000-1000-8000-0026BB765291",
1863
+ "type": "SupportedRTPConfiguration",
1864
+ "serviceType": "CameraRTPStreamManagement",
1865
+ "serviceName": "Side door",
1866
+ "description": "Supported RTP Configuration",
1867
+ "value": "AgEA",
1868
+ "format": "tlv8",
1869
+ "perms": [
1870
+ "pr"
1871
+ ],
1872
+ "canRead": true,
1873
+ "canWrite": false,
1874
+ "ev": false
1875
+ },
1876
+ {
1877
+ "aid": 7,
1878
+ "iid": 25,
1879
+ "uuid": "00000114-0000-1000-8000-0026BB765291",
1880
+ "type": "SupportedVideoStreamConfiguration",
1881
+ "serviceType": "CameraRTPStreamManagement",
1882
+ "serviceName": "Side door",
1883
+ "description": "Supported Video Stream Configuration",
1884
+ "value": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
1885
+ "format": "tlv8",
1886
+ "perms": [
1887
+ "pr"
1888
+ ],
1889
+ "canRead": true,
1890
+ "canWrite": false,
1891
+ "ev": false
1892
+ },
1893
+ {
1894
+ "aid": 7,
1895
+ "iid": 26,
1896
+ "uuid": "000000B0-0000-1000-8000-0026BB765291",
1897
+ "type": "Active",
1898
+ "serviceType": "CameraRTPStreamManagement",
1899
+ "serviceName": "Side door",
1900
+ "description": "Active",
1901
+ "value": 1,
1902
+ "format": "uint8",
1903
+ "perms": [
1904
+ "ev",
1905
+ "pr",
1906
+ "pw"
1907
+ ],
1908
+ "maxValue": 1,
1909
+ "minValue": 0,
1910
+ "minStep": 1,
1911
+ "canRead": true,
1912
+ "canWrite": true,
1913
+ "ev": true
1914
+ },
1915
+ {
1916
+ "aid": 7,
1917
+ "iid": 20,
1918
+ "uuid": "00000117-0000-1000-8000-0026BB765291",
1919
+ "type": "SelectedRTPStreamConfiguration",
1920
+ "serviceType": "CameraRTPStreamManagement",
1921
+ "serviceName": "Side door",
1922
+ "description": "Selected RTP Stream Configuration",
1923
+ "value": "AQMCAQI=",
1924
+ "format": "tlv8",
1925
+ "perms": [
1926
+ "pr",
1927
+ "pw"
1928
+ ],
1929
+ "canRead": true,
1930
+ "canWrite": true,
1931
+ "ev": false
1932
+ },
1933
+ {
1934
+ "aid": 7,
1935
+ "iid": 21,
1936
+ "uuid": "00000118-0000-1000-8000-0026BB765291",
1937
+ "type": "SetupEndpoints",
1938
+ "serviceType": "CameraRTPStreamManagement",
1939
+ "serviceName": "Side door",
1940
+ "description": "Setup Endpoints",
1941
+ "value": "AgEC",
1942
+ "format": "tlv8",
1943
+ "perms": [
1944
+ "pr",
1945
+ "pw"
1946
+ ],
1947
+ "canRead": true,
1948
+ "canWrite": true,
1949
+ "ev": false
1950
+ }
1951
+ ],
1952
+ "accessoryInformation": {
1953
+ "Manufacturer": "Eufy",
1954
+ "Model": "INDOOR_CAMERA",
1955
+ "Name": "Side door",
1956
+ "Serial Number": "T8400P20202844ED",
1957
+ "Firmware Revision": "2.2.0.2",
1958
+ "Hardware Revision": "P2"
1959
+ },
1960
+ "values": {
1961
+ "StreamingStatus": "AQEA",
1962
+ "SupportedAudioStreamConfiguration": "AQ4BAQICCQEBAQIBAAMBAQIBAA==",
1963
+ "SupportedRTPConfiguration": "AgEA",
1964
+ "SupportedVideoStreamConfiguration": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
1965
+ "Active": 1,
1966
+ "SelectedRTPStreamConfiguration": "AQMCAQI=",
1967
+ "SetupEndpoints": "AgEC"
1968
+ },
1969
+ "instance": {
1970
+ "name": "homebridge",
1971
+ "username": "0E:89:A7:DA:D3:21",
1972
+ "ipAddress": "192.168.1.11",
1973
+ "port": 40929,
1974
+ "services": [],
1975
+ "connectionFailedCount": 0,
1976
+ "configurationNumber": "21"
1977
+ },
1978
+ "uniqueId": "e8e6aec782cd554108e95e4a61b7fa4e941f2c63b9e656e6c828ac89e26e2dbd"
1979
+ },
1980
+ {
1981
+ "aid": 7,
1982
+ "iid": 27,
1983
+ "uuid": "00000110-0000-1000-8000-0026BB765291",
1984
+ "type": "CameraRTPStreamManagement",
1985
+ "humanType": "Camera Rtp Stream Management",
1986
+ "serviceName": "Side door",
1987
+ "serviceCharacteristics": [
1988
+ {
1989
+ "aid": 7,
1990
+ "iid": 30,
1991
+ "uuid": "00000120-0000-1000-8000-0026BB765291",
1992
+ "type": "StreamingStatus",
1993
+ "serviceType": "CameraRTPStreamManagement",
1994
+ "serviceName": "Side door",
1995
+ "description": "Streaming Status",
1996
+ "value": "AQEA",
1997
+ "format": "tlv8",
1998
+ "perms": [
1999
+ "ev",
2000
+ "pr"
2001
+ ],
2002
+ "canRead": true,
2003
+ "canWrite": false,
2004
+ "ev": true
2005
+ },
2006
+ {
2007
+ "aid": 7,
2008
+ "iid": 31,
2009
+ "uuid": "00000115-0000-1000-8000-0026BB765291",
2010
+ "type": "SupportedAudioStreamConfiguration",
2011
+ "serviceType": "CameraRTPStreamManagement",
2012
+ "serviceName": "Side door",
2013
+ "description": "Supported Audio Stream Configuration",
2014
+ "value": "AQ4BAQICCQEBAQIBAAMBAQIBAA==",
2015
+ "format": "tlv8",
2016
+ "perms": [
2017
+ "pr"
2018
+ ],
2019
+ "canRead": true,
2020
+ "canWrite": false,
2021
+ "ev": false
2022
+ },
2023
+ {
2024
+ "aid": 7,
2025
+ "iid": 32,
2026
+ "uuid": "00000116-0000-1000-8000-0026BB765291",
2027
+ "type": "SupportedRTPConfiguration",
2028
+ "serviceType": "CameraRTPStreamManagement",
2029
+ "serviceName": "Side door",
2030
+ "description": "Supported RTP Configuration",
2031
+ "value": "AgEA",
2032
+ "format": "tlv8",
2033
+ "perms": [
2034
+ "pr"
2035
+ ],
2036
+ "canRead": true,
2037
+ "canWrite": false,
2038
+ "ev": false
2039
+ },
2040
+ {
2041
+ "aid": 7,
2042
+ "iid": 33,
2043
+ "uuid": "00000114-0000-1000-8000-0026BB765291",
2044
+ "type": "SupportedVideoStreamConfiguration",
2045
+ "serviceType": "CameraRTPStreamManagement",
2046
+ "serviceName": "Side door",
2047
+ "description": "Supported Video Stream Configuration",
2048
+ "value": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
2049
+ "format": "tlv8",
2050
+ "perms": [
2051
+ "pr"
2052
+ ],
2053
+ "canRead": true,
2054
+ "canWrite": false,
2055
+ "ev": false
2056
+ },
2057
+ {
2058
+ "aid": 7,
2059
+ "iid": 34,
2060
+ "uuid": "000000B0-0000-1000-8000-0026BB765291",
2061
+ "type": "Active",
2062
+ "serviceType": "CameraRTPStreamManagement",
2063
+ "serviceName": "Side door",
2064
+ "description": "Active",
2065
+ "value": 1,
2066
+ "format": "uint8",
2067
+ "perms": [
2068
+ "ev",
2069
+ "pr",
2070
+ "pw"
2071
+ ],
2072
+ "maxValue": 1,
2073
+ "minValue": 0,
2074
+ "minStep": 1,
2075
+ "canRead": true,
2076
+ "canWrite": true,
2077
+ "ev": true
2078
+ },
2079
+ {
2080
+ "aid": 7,
2081
+ "iid": 28,
2082
+ "uuid": "00000117-0000-1000-8000-0026BB765291",
2083
+ "type": "SelectedRTPStreamConfiguration",
2084
+ "serviceType": "CameraRTPStreamManagement",
2085
+ "serviceName": "Side door",
2086
+ "description": "Selected RTP Stream Configuration",
2087
+ "value": "AQMCAQI=",
2088
+ "format": "tlv8",
2089
+ "perms": [
2090
+ "pr",
2091
+ "pw"
2092
+ ],
2093
+ "canRead": true,
2094
+ "canWrite": true,
2095
+ "ev": false
2096
+ },
2097
+ {
2098
+ "aid": 7,
2099
+ "iid": 29,
2100
+ "uuid": "00000118-0000-1000-8000-0026BB765291",
2101
+ "type": "SetupEndpoints",
2102
+ "serviceType": "CameraRTPStreamManagement",
2103
+ "serviceName": "Side door",
2104
+ "description": "Setup Endpoints",
2105
+ "value": "AgEC",
2106
+ "format": "tlv8",
2107
+ "perms": [
2108
+ "pr",
2109
+ "pw"
2110
+ ],
2111
+ "canRead": true,
2112
+ "canWrite": true,
2113
+ "ev": false
2114
+ }
2115
+ ],
2116
+ "accessoryInformation": {
2117
+ "Manufacturer": "Eufy",
2118
+ "Model": "INDOOR_CAMERA",
2119
+ "Name": "Side door",
2120
+ "Serial Number": "T8400P20202844ED",
2121
+ "Firmware Revision": "2.2.0.2",
2122
+ "Hardware Revision": "P2"
2123
+ },
2124
+ "values": {
2125
+ "StreamingStatus": "AQEA",
2126
+ "SupportedAudioStreamConfiguration": "AQ4BAQICCQEBAQIBAAMBAQIBAA==",
2127
+ "SupportedRTPConfiguration": "AgEA",
2128
+ "SupportedVideoStreamConfiguration": "AcUBAQACHQEBAAAAAQEBAAABAQICAQAAAAIBAQAAAgECAwEAAwsBAkABAgK0AAMBHgAAAwsBAkABAgLwAAMBDwAAAwsBAkABAgLwAAMBHgAAAwsBAuABAgIOAQMBHgAAAwsBAuABAgJoAQMBHgAAAwsBAoACAgJoAQMBHgAAAwsBAoACAgLgAQMBHgAAAwsBAgAFAgLQAgMBHgAAAwsBAgAFAgLAAwMBHgAAAwsBAoAHAgI4BAMBHgAAAwsBAkAGAgKwBAMBHg==",
2129
+ "Active": 1,
2130
+ "SelectedRTPStreamConfiguration": "AQMCAQI=",
2131
+ "SetupEndpoints": "AgEC"
2132
+ },
2133
+ "instance": {
2134
+ "name": "homebridge",
2135
+ "username": "0E:89:A7:DA:D3:21",
2136
+ "ipAddress": "192.168.1.11",
2137
+ "port": 40929,
2138
+ "services": [],
2139
+ "connectionFailedCount": 0,
2140
+ "configurationNumber": "21"
2141
+ },
2142
+ "uniqueId": "67fa85f535234f003c95e01c90897d1d3aff7a5523ee1b5cd593aedbebc1b30d"
2143
+ }
2144
+ ];
2070
2145
 
2071
- test('toList filters and maps camera devices correctly', () => {
2072
- const result = node.toList({ perms: 'ev' });
2073
- expect(result).toEqual([
2074
- {
2075
- name: 'Backyard',
2076
- fullName: 'Backyard - Camera Rtp Stream Management',
2077
- sortName: 'Backyard:CameraRTPStreamManagement',
2078
- uniqueId: '924c9390e6a89452936dfff957faa127d87e78e3c1b5084863495a184804fe56',
2079
- homebridge: 'homebridge',
2080
- service: 'CameraRTPStreamManagement',
2081
- manufacturer: 'Eufy'
2082
- },
2083
- {
2084
- name: 'Backyard',
2085
- fullName: 'Backyard - Motion Sensor',
2086
- sortName: 'Backyard:MotionSensor',
2087
- uniqueId: 'c9efb02acc5cabb2b164d4c479355551a6360345571b31de50e90f4a1fa42df6',
2088
- homebridge: 'homebridge',
2089
- service: 'MotionSensor',
2090
- manufacturer: 'Eufy'
2091
- },
2092
- {
2093
- "fullName": "Canoe 5036 - Camera Rtp Stream Management",
2094
- "homebridge": "ECI-T24F2",
2095
- "manufacturer": "HikVision",
2096
- "name": "Canoe 5036",
2097
- "service": "CameraRTPStreamManagement",
2098
- "sortName": "Canoe 5036:CameraRTPStreamManagement",
2099
- "uniqueId": "9959f43e6f32e451a9c13e0c028d863fa148c39cbbcb57f93d8d825fc31f8865",
2100
- },
2101
- {
2102
- "fullName": "Canoe - Motion Sensor",
2103
- "homebridge": "ECI-T24F2",
2104
- "manufacturer": "HikVision",
2105
- "name": "Canoe",
2106
- "service": "MotionSensor",
2107
- "sortName": "Canoe:MotionSensor",
2108
- "uniqueId": "10dbaceb026b81f56c6226eca2c30b7ba06c29de632253972402bd3f489096f1",
2109
- },
2110
- {
2111
- name: 'Side door',
2112
- fullName: 'Side door - Camera Rtp Stream Management',
2113
- sortName: 'Side door:CameraRTPStreamManagement',
2114
- uniqueId: 'e8e6aec782cd554108e95e4a61b7fa4e941f2c63b9e656e6c828ac89e26e2dbd',
2115
- homebridge: 'homebridge',
2116
- service: 'CameraRTPStreamManagement',
2117
- manufacturer: 'Eufy'
2118
- },
2119
- {
2120
- name: 'Side door',
2121
- fullName: 'Side door - Motion Sensor',
2122
- sortName: 'Side door:MotionSensor',
2123
- uniqueId: 'f4827932577f2073ae5584a4a66607a1dd67af9b3e5bf22d59dffdc702d0f240',
2124
- homebridge: 'homebridge',
2125
- service: 'MotionSensor',
2126
- manufacturer: 'Eufy'
2127
- },
2128
- ]);
2146
+ const testhbDevicesResult = [
2147
+ {
2148
+ name: 'Backyard',
2149
+ fullName: 'Backyard - Camera Rtp Stream Management',
2150
+ sortName: 'Backyard:CameraRTPStreamManagement',
2151
+ uniqueId: '924c9390e6a89452936dfff957faa127d87e78e3c1b5084863495a184804fe56',
2152
+ homebridge: 'homebridge',
2153
+ service: 'CameraRTPStreamManagement',
2154
+ manufacturer: 'Eufy'
2155
+ },
2156
+ {
2157
+ name: 'Backyard',
2158
+ fullName: 'Backyard - Motion Sensor',
2159
+ sortName: 'Backyard:MotionSensor',
2160
+ uniqueId: 'c9efb02acc5cabb2b164d4c479355551a6360345571b31de50e90f4a1fa42df6',
2161
+ homebridge: 'homebridge',
2162
+ service: 'MotionSensor',
2163
+ manufacturer: 'Eufy'
2164
+ },
2165
+ {
2166
+ "fullName": "Canoe 5036 - Camera Rtp Stream Management",
2167
+ "homebridge": "ECI-T24F2",
2168
+ "manufacturer": "HikVision",
2169
+ "name": "Canoe 5036",
2170
+ "service": "CameraRTPStreamManagement",
2171
+ "sortName": "Canoe 5036:CameraRTPStreamManagement",
2172
+ "uniqueId": "9959f43e6f32e451a9c13e0c028d863fa148c39cbbcb57f93d8d825fc31f8865",
2173
+ },
2174
+ {
2175
+ "fullName": "Canoe - Motion Sensor",
2176
+ "homebridge": "ECI-T24F2",
2177
+ "manufacturer": "HikVision",
2178
+ "name": "Canoe",
2179
+ "service": "MotionSensor",
2180
+ "sortName": "Canoe:MotionSensor",
2181
+ "uniqueId": "10dbaceb026b81f56c6226eca2c30b7ba06c29de632253972402bd3f489096f1",
2182
+ },
2183
+ {
2184
+ name: 'Side door',
2185
+ fullName: 'Side door - Camera Rtp Stream Management',
2186
+ sortName: 'Side door:CameraRTPStreamManagement',
2187
+ uniqueId: 'e8e6aec782cd554108e95e4a61b7fa4e941f2c63b9e656e6c828ac89e26e2dbd',
2188
+ homebridge: 'homebridge',
2189
+ service: 'CameraRTPStreamManagement',
2190
+ manufacturer: 'Eufy'
2191
+ },
2192
+ {
2193
+ name: 'Side door',
2194
+ fullName: 'Side door - Motion Sensor',
2195
+ sortName: 'Side door:MotionSensor',
2196
+ uniqueId: 'f4827932577f2073ae5584a4a66607a1dd67af9b3e5bf22d59dffdc702d0f240',
2197
+ homebridge: 'homebridge',
2198
+ service: 'MotionSensor',
2199
+ manufacturer: 'Eufy'
2200
+ },
2201
+ ];
2129
2202
 
2130
- // Ensure the unsupported type was filtered out
2131
- expect(result.find(device => device.name === 'Garage Sensor')).toBeUndefined();
2132
- });
2203
+ // Issue #142
2133
2204
 
2205
+ // `${service.instance.name}${service.instance.username}${service.accessoryInformation.Manufacturer}${friendlyName}${service.uuid.slice(0, 8)}`;
2206
+ const testhbDevicesIssue142 = [
2207
+ {
2208
+ "aid": 11,
2209
+ "iid": 10,
2210
+ "uuid": "0000008C-0000-1000-8000-0026BB765291",
2211
+ "type": "WindowCovering",
2212
+ "humanType": "Window Covering",
2213
+ "serviceName": "control",
2214
+ "serviceCharacteristics": [{}, {}, {}, {}],
2215
+ "accessoryInformation": {
2216
+ "Manufacturer": "Tuya Inc.",
2217
+ "Model": "2rvvqjoa",
2218
+ "Name": "Livingroom Curtain",
2219
+ "Serial Number": "aaaaa",
2220
+ "Firmware Revision": "0",
2221
+ "Configured Name": "Livingroom Curtain",
2222
+ "Status Active": 1
2223
+ },
2224
+ "values": {},
2225
+ "instance": { name: 'Issue142', username: '0E:89:A7:DA:D3:21', port: 1234 },
2226
+ "uniqueId": "aaaaa"
2227
+ },
2228
+ {
2229
+ "aid": 12,
2230
+ "iid": 10,
2231
+ "uuid": "0000008C-0000-1000-8000-0026BB765291",
2232
+ "type": "WindowCovering",
2233
+ "humanType": "Window Covering",
2234
+ "serviceName": "control",
2235
+ "serviceCharacteristics": [{}, {}, {}, {}],
2236
+ "accessoryInformation": {
2237
+ "Manufacturer": "Tuya Inc.",
2238
+ "Model": "2rvvqjoa",
2239
+ "Name": "Kitchen Curtain",
2240
+ "Serial Number": "bbbbb",
2241
+ "Firmware Revision": "0",
2242
+ "Configured Name": "Kitchen Curtain",
2243
+ "Status Active": 1
2244
+ },
2245
+ "values": {},
2246
+ "instance": { name: 'Issue142', username: '0E:89:A7:DA:D3:21', port: 1234 },
2247
+ "uniqueId": "bbbbb"
2248
+ },
2249
+ {
2250
+ "aid": 17,
2251
+ "iid": 10,
2252
+ "uuid": "0000008C-0000-1000-8000-0026BB765291",
2253
+ "type": "WindowCovering",
2254
+ "humanType": "Window Covering",
2255
+ "serviceName": "control",
2256
+ "serviceCharacteristics": [{}, {}, {}, {}],
2257
+ "accessoryInformation": {
2258
+ "Manufacturer": "Tuya Inc.",
2259
+ "Model": "2rvvqjoa",
2260
+ "Name": "Bedroom Curtain",
2261
+ "Serial Number": "ccccc",
2262
+ "Firmware Revision": "0.0.0",
2263
+ "Configured Name": "Bedroom Curtain",
2264
+ "Status Active": 1
2265
+ },
2266
+ "values": {},
2267
+ "instance": { name: 'Issue142', username: '0E:89:A7:DA:D3:21', port: 1234 },
2268
+ "uniqueId": "ccccc"
2269
+ }
2270
+ ];
2134
2271
 
2135
- });
2272
+ const testhbDevicesResultIssue142 = [
2273
+ {
2274
+ name: 'Bedroom Curtain',
2275
+ fullName: 'Bedroom Curtain - Window Covering',
2276
+ sortName: 'Bedroom Curtain:WindowCovering',
2277
+ uniqueId: 'Issue1420E:89:A7:DA:D3:21Tuya Inc.Bedroom Curtain0000008C',
2278
+ homebridge: 'Issue142',
2279
+ service: 'WindowCovering',
2280
+ manufacturer: 'Tuya Inc.'
2281
+ },
2282
+ {
2283
+ name: 'Kitchen Curtain',
2284
+ fullName: 'Kitchen Curtain - Window Covering',
2285
+ sortName: 'Kitchen Curtain:WindowCovering',
2286
+ uniqueId: 'Issue1420E:89:A7:DA:D3:21Tuya Inc.Kitchen Curtain0000008C',
2287
+ homebridge: 'Issue142',
2288
+ service: 'WindowCovering',
2289
+ manufacturer: 'Tuya Inc.'
2290
+ },
2291
+ {
2292
+ name: 'Livingroom Curtain',
2293
+ fullName: 'Livingroom Curtain - Window Covering',
2294
+ sortName: 'Livingroom Curtain:WindowCovering',
2295
+ uniqueId: 'Issue1420E:89:A7:DA:D3:21Tuya Inc.Livingroom Curtain0000008C',
2296
+ homebridge: 'Issue142',
2297
+ service: 'WindowCovering',
2298
+ manufacturer: 'Tuya Inc.'
2299
+ }
2300
+ ];