From 2aac3047efd3628dd0b8b4e2be3ecf0e8efb05f3 Mon Sep 17 00:00:00 2001 From: Victor Chang Date: Fri, 7 Jun 2024 00:22:45 -0700 Subject: [PATCH] Add MGM info to `dump_config()`. --- .../components/emporia_vue_utility/emporia_vue_utility.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/esphome/components/emporia_vue_utility/emporia_vue_utility.cpp b/esphome/components/emporia_vue_utility/emporia_vue_utility.cpp index 8a0edd4..cdc98ae 100644 --- a/esphome/components/emporia_vue_utility/emporia_vue_utility.cpp +++ b/esphome/components/emporia_vue_utility/emporia_vue_utility.cpp @@ -156,7 +156,10 @@ void EmporiaVueUtility::loop() { } void EmporiaVueUtility::dump_config() { - ESP_LOGCONFIG(TAG, "Emporia Vue Utility config dump WIP"); + ESP_LOGCONFIG(TAG, "Emporia Vue Utility Connect"); + ESP_LOGCONFIG(TAG, " MGM Firmware Version: %d", this->mgm_firmware_ver); + ESP_LOGCONFIG(TAG, " MGM MAC Address: %s", this->mgm_mac_address); + ESP_LOGCONFIG(TAG, " MGM Install Code: %s (secret)", this->mgm_install_code); } } // namespace emporia_vue_utility } // namespace esphome \ No newline at end of file