-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_config.json
More file actions
48 lines (48 loc) · 910 Bytes
/
example_config.json
File metadata and controls
48 lines (48 loc) · 910 Bytes
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
{
"output": {
"log_to_csv": false,
"print_data": false,
"file_path": "output/data_log.csv",
"mqtt_enabled": true
},
"mqtt": {
"broker": "localhost",
"port": 1883,
"topic_prefix": "iot_simulator",
"keepalive": 60
},
"sensors": [
{
"id": "T-001",
"type": "temperature",
"min_value": 18.0,
"max_value": 35.0,
"unit": "°C",
"interval": 5
},
{
"id": "H-001",
"type": "humidity",
"min_value": 30.0,
"max_value": 80.0,
"unit": "%",
"interval": 30
},
{
"id": "V-001",
"type": "vibration",
"min_value": 0.5,
"max_value": 10.0,
"unit": "mm/s (RMS)",
"interval": 1.0
},
{
"id": "P-001",
"type": "pressure",
"min_value": 10.0,
"max_value": 250.0,
"unit": "bar",
"interval": 1.0
}
]
}