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