2020-09-12 11:42:02 +01:00
|
|
|
class globalVariables {
|
|
|
|
waterOn = "";
|
2020-09-14 13:47:23 +01:00
|
|
|
waterNextEvent = "";
|
2020-09-21 21:38:46 +01:00
|
|
|
waterPolling = "";
|
|
|
|
heatingNextEvent = "";
|
|
|
|
heatingPolling = "";
|
2020-09-28 10:50:23 +01:00
|
|
|
currentPage = "";
|
|
|
|
heatingPageSwitch = "";
|
|
|
|
heatingPageS = 1;
|
|
|
|
piHolePolling = "";
|
2020-09-29 10:23:41 +01:00
|
|
|
lastWeatherRequest = ""
|
|
|
|
lastWaterRequest = ""
|
|
|
|
lastHeatingRequest = ""
|
|
|
|
weatherPolling = ""
|
2020-09-12 11:42:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = new globalVariables();
|