-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings-template.py
More file actions
30 lines (24 loc) · 842 Bytes
/
Copy pathsettings-template.py
File metadata and controls
30 lines (24 loc) · 842 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
# wlan accesspoint
IP_ADDRESS = '192.168.178.1'
PASSWORD = 'yourPW' # be careful
# Mac addresses of the residents' portable devices, which are always taken along
# some names
MACS=["00:00:00:00:00:00","11:11:11:11:11:11"]
# interval of the check if someone is at home in minutes
CHECK_INTERVAL=10
# identifying special days i.e. holidays
COUNTRY_CODE ="XX"
# download url of data
# from local file system
DATA_URL = "data/YourDataSource.csv"
# or public url
# DATA_URL = "https://YourDataSource.csv"
# dependend on 2 switching thresholds
targetTemps = [18, 20, 22]
# 2 switching thresholds of probability of number residents at home
switchingThresholds = [0.5, 1.0]
# data filenames (no need to change)
SEPARATOR = ","
PREDICTION_FILENAME = "prediction.csv"
SPECIAL_FILENAME = "specialDay.csv"
DATA_FILENAME = "YourDataSource.csv"