From 049231a36ef8e0b113af60bb8ec8bb2cc89c900b Mon Sep 17 00:00:00 2001 From: proddy Date: Mon, 30 Mar 2026 23:15:18 +0200 Subject: [PATCH] minor text changes --- src/core/analogsensor.cpp | 2 +- src/core/system.cpp | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) 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 {