From 59e00b0af1f50f8896ee332773a15f6be676b39d Mon Sep 17 00:00:00 2001 From: Alexander Bobkov Date: Fri, 10 Jan 2025 18:15:34 -0500 Subject: [PATCH] ESP32-Console --- ESP32-Console/main/commands.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ESP32-Console/main/commands.h b/ESP32-Console/main/commands.h index fcb8a2c39..889c71abc 100644 --- a/ESP32-Console/main/commands.h +++ b/ESP32-Console/main/commands.h @@ -12,6 +12,10 @@ static struct { } info_args; static int do_info_cmd (int argc, char **argv) { ESP_LOGW("CLI", "This is the Information Command."); + + if (info_args.chip_temp->count) { + ESP_LOGW("CLI", "Information: Chip Temperature %d", 25); + } return 0; } static void register_info (void) {