17 lines
387 B
JavaScript
17 lines
387 B
JavaScript
class globalVariables {
|
|
waterOn = "";
|
|
waterNextEvent = "";
|
|
waterPolling = "";
|
|
heatingNextEvent = "";
|
|
heatingPolling = "";
|
|
currentPage = "";
|
|
heatingPageSwitch = "";
|
|
heatingPageS = 1;
|
|
piHolePolling = "";
|
|
lastWeatherRequest = ""
|
|
lastWaterRequest = ""
|
|
lastHeatingRequest = ""
|
|
weatherPolling = ""
|
|
}
|
|
|
|
module.exports = new globalVariables(); |