-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.py
16 lines (15 loc) · 955 Bytes
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python
config = {
"useTestData" : False, # if true uses data in testdata.py instead of going to the live server
"rooms": { # describe the rooms primary key is the descriptive room name
"Mich's Office":{
"name" :"Mich's Office",
"devLabels" : [
"Aeon SmartStrip 03",
"Aeon Ss 01",
"Aeon Ss 02",
"SmartSense Motion/Temp Sensor 01"
]
}
}
}