From cc7af785b294b807446bd953e4bf2abf27223d1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Xose=20P=C3=A9rez?= Date: Tue, 27 Feb 2018 10:38:20 +0100 Subject: [PATCH] Added UART_MQTT check to info command --- code/espurna/utils.ino | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/espurna/utils.ino b/code/espurna/utils.ino index 8f8566e6..3d86c767 100644 --- a/code/espurna/utils.ino +++ b/code/espurna/utils.ino @@ -327,6 +327,9 @@ void info() { #if THINGSPEAK_SUPPORT DEBUG_MSG_P(PSTR(" THINGSPEAK")); #endif + #if UART_MQTT_SUPPORT + DEBUG_MSG_P(PSTR(" UART_MQTT")); + #endif #if WEB_SUPPORT DEBUG_MSG_P(PSTR(" WEB")); #endif