From 03409d88e990c53b565e3327d643ff2f994fd33d Mon Sep 17 00:00:00 2001 From: Alexander Bobkov Date: Mon, 13 Jan 2025 21:40:30 -0500 Subject: [PATCH] ESP32-Console --- ESP32-Console/main/commands.h | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/ESP32-Console/main/commands.h b/ESP32-Console/main/commands.h index 8aa66e5b9..cca2a9bdb 100644 --- a/ESP32-Console/main/commands.h +++ b/ESP32-Console/main/commands.h @@ -54,8 +54,12 @@ static int exec_info_cmd (int argc, char **argv) { if (info_args.chip_temp->count != 0) { ESP_LOGW("CLI", "info(): Chip Temperature: %d", 35); } - if (info_args.voltage->count != 0) {} - if (info_args.current->count != 0) {} + if (info_args.voltage->count != 0) { + ESP_LOGI("CLI", "Displaying voltage."); + } + if (info_args.current->count != 0) { + ESP_LOGI("CLI", ""); + } return 0; } static void register_info (void) {