-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy paththermostat_settings.json
52 lines (52 loc) · 1.15 KB
/
thermostat_settings.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
52
{
"calibration": {
"boilingMeasured": 99.098043,
"elevation": 269,
"freezingMeasured": 0.01
},
"logging": {
"channel": "file",
"level": "state"
},
"mqtt": {
"clientID": "thermostat",
"enabled": 0,
"port": 1883,
"pubPrefix": "mymqtt",
"server": "localhost"
},
"pir": {
"pirCheckInterval": 0.5,
"pirEnabled": 1,
"pirIgnoreFrom": "00:00",
"pirIgnoreTo": "00:00",
"pirPin": 5
},
"scale": {
"tempScale": "metric"
},
"thermostat": {
"coolPin": 18,
"fanPin": 25,
"heatPin": 23,
"maxTemp": 30.0,
"minTemp": 15.0,
"minUIEnabled": 1,
"minUITimeout": 60,
"tempCheckInterval": 3,
"tempHysteresis": 0.5,
"tempStep": 0.5
},
"weather": {
"appkey": "your openweathermap.org appkey",
"forecastRefreshInterval": 60,
"location": "Barrie,ca",
"weatherExceptionInterval": 5,
"weatherRefreshInterval": 10,
"URLtimeout": 5
},
"web": {
"host": "discover",
"port": 80
}
}