-
Notifications
You must be signed in to change notification settings - Fork 0
/
EdgeX_CameraMonitorProfile.yml
50 lines (47 loc) · 1.29 KB
/
EdgeX_CameraMonitorProfile.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: "camera-monitor-profile"
manufacturer: "IOTech"
model: "Cam12345"
labels:
- "camera"
description: "Human and canine camera monitor profile"
deviceResources:
-
name: "HumanCount"
isHidden: false #is hidden is false by default so this is just making it explicit for purpose of the walkthrough demonstration
description: "Number of people on camera"
properties:
valueType: "Int16"
readWrite: "R" #designates that this property can only be read and not set
defaultValue: "0"
-
name: "CanineCount"
isHidden: false
description: "Number of dogs on camera"
properties:
valueType: "Int16"
readWrite: "R" #designates that this property can only be read and not set
defaultValue: "0"
-
name: "ScanDepth"
isHidden: false
description: "Get/set the scan depth"
properties:
valueType: "Int16"
readWrite: "RW" #designates that this property can be read or set
defaultValue: "0"
-
name: "SnapshotDuration"
isHidden: false
description: "Get the snaphot duration"
properties:
valueType: "Int16"
readWrite: "RW" #designates that this property can be read or set
defaultValue: "0"
deviceCommands:
-
name: "Counts"
readWrite: "R"
isHidden: false
resourceOperations:
- { deviceResource: "HumanCount" }
- { deviceResource: "CanineCount" }