2b6544cd497c325e87da21635e183b8d4a683554
[smartthings-infrastructure.git] / GlobalVariables / GlobalVariablesEachApp.groovy
1 //Settings variable defined to settings on purpose
2 def settings = "Settings"
3 //Global variable for state[mode]
4 def state = [home:[],away:[],night:[]]
5 //Create a global logger object for methods
6 def log = new Logger()
7 //Create a global variable for Functions in Subscribe method
8 def functionList = []
9 //Create a global variable for Objects in Subscribe method
10 def objectList = []
11 //Create a global variable for Events in Subscribe method
12 def eventList = []
13 //Create a global list for function schedulers
14 def timersFuncList = []
15 //Create a global list for timer schedulers
16 def timersList = []