forked from steve71/RasPiBrew
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config-rpisimulation.json
51 lines (49 loc) · 1.24 KB
/
config-rpisimulation.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
49
50
51
{
"globals": {
"speedUp": 16.0,
"updateInterval": 2.0,
"autoConfirm": false,
"useLCD": true,
"useTTY": true,
"useBeep": true,
"confirmHWButtons": false,
"confirmTTYKeyboard": true,
"runAsSimulation": true,
"useIPCheck": true,
"displayUnit": "C",
"recipeUnit" : "C"
},
"brewSetup": {
"useCirculationPump": true,
"pidConfig": [{},
{ "url": "http://localhost:8080","id": "1",
"k": 50, "i": 400, "d":0, "cycletime": 5.0},
{ "url": "http://localhost:8080","id": "2",
"k": 0, "i": 0, "d": 0, "cycletime": 600}]
},
"raspibrew": {
"useLCD": false,
"numberControllers": 2,
"runDirPrefix": "/",
"controller": [{},
{ "sensorId": "10.1AE63B020800",
"sensorType":"Simulated",
"pin": 17,
"dTHm": 1.5,
"dTCm": 0.78,
"waterTemp": 10.0,
"heaterType": "Simulated",
"heaterId": 17
},
{ "sensorId": "28.F2AC88040000",
"sensorType": "Simulated",
"pin": 23,
"dTHm": 0,
"dTCm": 0,
"waterTemp": 20.0,
"heaterType": "Simulated",
"heaterId": 23
}],
"simulation": { "roomTemp": 20.0 }
}
}