Changes in classes: new concept for latest value + all types of events generated...
[smartthings-infrastructure.git] / GlobalVariables / GlobalVariablesEachApp.groovy
1 //Global variable for state[mode]
2 def state = [home:[],away:[],night:[]]
3 //Create a global logger object for methods
4 def log = new Logger()
5 //Create a global variable for Functions in Subscribe method
6 def functionList = []
7 //Create a global variable for Objects in Subscribe method
8 def objectList = []
9 //Create a global variable for Events in Subscribe method
10 def eventList = []
11 //Create a global list for function schedulers
12 def timersFuncList = []
13 //Create a global list for timer schedulers
14 def timersList = []
15 //Create a global variable for settings
16 def settings
17 //Zip code
18 def zipCode = 92617
19 //atomicState variable
20 def atomicState = [version: "1.01"]