diff --git a/src/core/analogsensor.cpp b/src/core/analogsensor.cpp index 9e6ebf9bc..a6b65d9c1 100644 --- a/src/core/analogsensor.cpp +++ b/src/core/analogsensor.cpp @@ -56,7 +56,7 @@ void IRAM_ATTR AnalogSensor::freqIrq2() { #endif void AnalogSensor::start(const bool factory_settings) { - // add hardcode sensors for BBQKees gateway boards + // add hardcoded sensors for BBQKees gateway boards if (factory_settings && EMSESP::system_.board_profile() == "E32V2_2") { EMSESP::webCustomizationService.update([&](WebCustomization & settings) { auto newSensor = AnalogCustomization(); diff --git a/src/core/system.cpp b/src/core/system.cpp index 4687209fc..e9bbe3927 100644 --- a/src/core/system.cpp +++ b/src/core/system.cpp @@ -2582,7 +2582,7 @@ bool System::command_info(const char * value, const int8_t id, JsonObject output #endif // Modbus Status - node = output["Modbus"].to(); + node = output["modbus"].to(); node["enabled"] = EMSESP::system_.modbus_enabled_; if (EMSESP::system_.modbus_enabled_) { node["maxClients"] = EMSESP::system_.modbus_max_clients_; @@ -2598,7 +2598,8 @@ bool System::command_info(const char * value, const int8_t id, JsonObject output node["temperatureSensorFails"] = EMSESP::temperaturesensor_.fails(); } - node = output["Analog"].to(); + // Analog Status + node = output["analog"].to(); node["enabled"] = EMSESP::analog_enabled(); if (EMSESP::analog_enabled()) { node["analogSensors"] = EMSESP::analogsensor_.count_entities(); @@ -2982,7 +2983,7 @@ bool System::ntp_connected() { return ntp_connected_; } -// see if its a BBQKees Gateway by checking the efuse values +// see if its a BBQKees Gateway by checking the eFuse values String System::getBBQKeesGatewayDetails(uint8_t detail) { #ifndef EMSESP_STANDALONE union {