-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfiguration.json
48 lines (48 loc) · 1.6 KB
/
configuration.json
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
[
{
"name": "Virtual Test Kit 1",
"modules": [
"astroplant_simulation.sensors",
"astroplant_kit.peripheral"
],
"serial": "k.8yxx78qp",
"peripherals": [
{
"peripheral_name": "Virtual temperature",
"parameters": {
"sleep": "3000"
},
"class_name": "Temperature",
"peripheral_definition_name": "Virtual temperature sensor",
"module_name": "astroplant_simulation.sensors"
},
{
"peripheral_name": "Virtual pressure",
"parameters": {
"sleep": "3000"
},
"class_name": "Pressure",
"peripheral_definition_name": "Virtual pressure sensor",
"module_name": "astroplant_simulation.sensors"
},
{
"peripheral_name": "Virtual barometer",
"parameters": {
"sleep": "3000"
},
"class_name": "Barometer",
"peripheral_definition_name": "Virtual barometer",
"module_name": "astroplant_simulation.sensors"
},
{
"peripheral_name": "Data logger",
"parameters": {
"storage_path": "./data"
},
"class_name": "LocalDataLogger",
"peripheral_definition_name": "Local data logger",
"module_name": "astroplant_kit.peripheral"
}
]
}
]