states.faultCode moved to sensors.faultCode, states.rssi moved to sensors.rssi, states.uptime moved to sensors.uptime

This commit is contained in:
Yurii
2023-11-23 05:11:58 +03:00
parent b268ff4007
commit 70e577e29f
5 changed files with 12 additions and 10 deletions

View File

@@ -94,14 +94,14 @@ struct Variables {
bool flame = false;
bool fault = false;
bool diagnostic = false;
byte faultCode = 0;
int8_t rssi = 0;
} states;
struct {
float modulation = 0.0f;
float pressure = 0.0f;
float dhwFlowRate = 0.0f;
byte faultCode = 0;
int8_t rssi = 0;
} sensors;
struct {