diff --git a/README.md b/README.md index 72ad344..cad4d5c 100644 --- a/README.md +++ b/README.md @@ -429,7 +429,7 @@ Note that the following options can break Nuki Hub and cause bootloops that will - Enable Nuki readable data debug logging: Enable to log human readable debug information regarding Nuki BLE to MQTT and/or Serial. - Enable Nuki hex data debug logging: Enable to log hex debug information regarding Nuki BLE to MQTT and/or Serial. - Enable Nuki command debug logging: Enable to log debug information regarding Nuki BLE commands to MQTT and/or Serial. -- Pubish free heap over MQTT: Enable to publish free heap to MQTT. +- Publish free heap over MQTT: Enable to publish free heap to MQTT. ## Exposed MQTT Topics diff --git a/src/WebCfgServer.cpp b/src/WebCfgServer.cpp index 629f6fd..0ae940b 100644 --- a/src/WebCfgServer.cpp +++ b/src/WebCfgServer.cpp @@ -5778,7 +5778,7 @@ esp_err_t WebCfgServer::buildAdvancedConfigHtml(PsychicRequest *request, Psychic printCheckBox(&response, "DBGREAD", "Enable Nuki readable data debug logging", _preferences->getBool(preference_debug_readable_data, false), ""); printCheckBox(&response, "DBGHEX", "Enable Nuki hex data debug logging", _preferences->getBool(preference_debug_hex_data, false), ""); printCheckBox(&response, "DBGCOMM", "Enable Nuki command debug logging", _preferences->getBool(preference_debug_command, false), ""); - printCheckBox(&response, "DBGHEAP", "Pubish free heap over MQTT", _preferences->getBool(preference_publish_debug_info, false), ""); + printCheckBox(&response, "DBGHEAP", "Publish free heap over MQTT", _preferences->getBool(preference_publish_debug_info, false), ""); response.print(""); response.print("
");