auto-formatting

This commit is contained in:
proddy
2024-03-30 18:57:35 +01:00
parent 9822aa6e13
commit 2604368cf8
4 changed files with 6 additions and 7 deletions

View File

@@ -55,7 +55,7 @@ class Mixer : public EMSdevice {
uint8_t setValveTime_;
uint8_t flowTempOffset_;
uint16_t hc_ = EMS_VALUE_USHORT_NOTSET;
uint16_t hc_ = EMS_VALUE_USHORT_NOTSET;
};
} // namespace emsesp

View File

@@ -188,7 +188,6 @@ class Solar : public EMSdevice {
bool set_cylPriority(const char * value, const int8_t id);
bool set_heatAssist(const char * value, const int8_t id);
bool set_diffControl(const char * value, const int8_t id);
};
} // namespace emsesp

View File

@@ -71,9 +71,9 @@ class Water : public EMSdevice {
uint8_t wwStatus2_;
// mixer
uint8_t wwStatus_;
int8_t wwDiffTemp_;
uint8_t wwRequiredTemp_;
uint8_t wwStatus_;
int8_t wwDiffTemp_;
uint8_t wwRequiredTemp_;
// IPM
uint16_t HydrTemp_;

View File

@@ -1239,8 +1239,8 @@ bool System::command_info(const char * value, const int8_t id, JsonObject output
node["free mem"] = getHeapMem();
node["max alloc"] = getMaxAllocMem();
node["free caps"] = heap_caps_get_free_size(MALLOC_CAP_8BIT) / 1024; // includes heap and psram
node["used app"] = EMSESP::system_.appUsed(); // kilobytes
node["free app"] = EMSESP::system_.appFree(); // kilobytes
node["used app"] = EMSESP::system_.appUsed(); // kilobytes
node["free app"] = EMSESP::system_.appFree(); // kilobytes
node["partition"] = esp_ota_get_running_partition()->label;
#endif
node["reset reason"] = EMSESP::system_.reset_reason(0) + " / " + EMSESP::system_.reset_reason(1);