This repository was archived by the owner on Aug 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathconfig.json
More file actions
33 lines (33 loc) · 1.26 KB
/
config.json
File metadata and controls
33 lines (33 loc) · 1.26 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
{
"mysql":[{
"host":"localhost",
"user":"monitor",
"password":"password",
"database":"temperatures"
}],
"sensors":
[[{"name":"Inside"},{"gpio":"22"},{"sensorType":"22"},{"temperatureLowLimit":"18"},{"temperatureHighLimit":"24"},{"temperatureThreshold":"5"},{"humidityLowLimit":"10"},{"humidityHighLimit":"60"},{"humidityThreshold":"10"}],
[{"name":"Outside"},{"gpio":"23"},{"sensorType":"22"},{"temperatureLowLimit":"-10"},{"temperatureHighLimit":"15"},{"temperatureThreshold":"5"},{"humidityLowLimit":"40"},{"humidityHighLimit":"60"},{"humidityThreshold":"10"}]],
"mailInfo":[{
"senderaddress":"email address to sender field @gmail.com",
"receiveraddress":"email address where to send warnings @gmail.com",
"username":"username",
"password":"password",
"subjectmessage":"Info from temperature logger",
"subjectwarning":"Warning from temperature logger"
}],
"sqlBackupDump":[{
"backupDumpEnabled":"y",
"backupDay":"1",
"backupHour":"23",
"backupDumpPath":"/home/pi/DHT22-TemperatureLogger/Backups/"
}],
"weeklyAverages":[{
"weeklyAverageSendingEnabled":"y",
"weekDayForSendingAverages":"1",
"hourOfTheDayForSendingAverages":"23"
}],
"useFahrenheits":"n",
"mailSendingTimeoutInFullHours":"1",
"adafruitPath":"/home/pi/Adafruit_Python_DHT/examples/AdafruitDHT.py"
}