-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathPiotConfig.props
More file actions
79 lines (73 loc) · 1.93 KB
/
PiotConfig.props
File metadata and controls
79 lines (73 loc) · 1.93 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#####
# Configuration file for the Constrained Device App (CDA)
#
# This provides a section-based configuration format for use by
# ConfigUtil with keys defined in ConfigConst.
#
# IMPORTANT: Edit this file to meet your local system requirements.
#
#
# MQTT client configuration information
#
[Mqtt.GatewayService]
credFile = ./cred/PiotMqttLocalCred.props
certFile = ./cert/PiotMqttLocalCertFile.pem
host = localhost
port = 1883
securePort = 8883
defaultQoS = 0
keepAlive = 60
enableAuth = False
enableCrypt = False
#
# CoAP client configuration information
#
[Coap.GatewayService]
credFile = ./cred/PiotCoapCred.props
certFile = ./cert/PiotCoapLocalCertFile.pem
host = localhost
port = 5683
securePort = 5684
enableAuth = False
enableCrypt = False
#
# CDA specific configuration information
#
[ConstrainedDevice]
deviceLocationID = constraineddevice001
enableEmulator = False
enableSenseHAT = False
enableMqttClient = True
enableCoapServer = False
enableCoapClient = False
enableSystemPerformance = True
enableSensing = False
enableLogging = True
pollCycleSecs = 5
testGdaDataPath = /tmp/gda-data
testCdaDataPath = /tmp/cda-data
testEmptyApp = False
# configurable limits for sensor simulation
humiditySimFloor = 35.0
humiditySimCeiling = 45.0
pressureSimFloor = 990.0
pressureSimCeiling = 1010.0
tempSimFloor = 15.0
tempSimCeiling = 25.0
# configurable limits for actuator triggers
handleTempChangeOnDevice = True
triggerHvacTempFloor = 18.0
triggerHvacTempCeiling = 20.0
# camera settings
streamHostAddr = 127.0.0.1
streamHostLabel = localhost
streamPort = 8554
streamProtocol = rtsp
streamPath = stream
streamEncoding = MJPG
streamFrameWidth = 1440
streamFrameHeight = 1080
streamFps = 30
imageFileExt = .png
videoFileExt = .avi
minMotionPixelsDiff = 10000