use TinyLogger lib

This commit is contained in:
Yurii
2023-11-22 17:53:43 +03:00
parent 8bccfcb95d
commit 5672ff0c3d
10 changed files with 196 additions and 145 deletions

View File

@@ -109,8 +109,6 @@ struct Variables {
} temperatures;
struct {
unsigned long restartSignalTime = 0;
unsigned int restartAfterTime = 0;
bool heatingEnabled = false;
byte heatingMinTemp = 20;
byte heatingMaxTemp = 90;
@@ -123,4 +121,10 @@ struct Variables {
uint8_t masterType;
uint8_t masterVersion;
} parameters;
struct {
bool restart = false;
bool faultReset = false;
bool diagnosticReset = false;
} actions;
} vars;