From bee58474645246803f54821ea65efe3e686e3fe0 Mon Sep 17 00:00:00 2001 From: Jonathan Swoboda <154711427+swoboda1337@users.noreply.github.com> Date: Mon, 22 Dec 2025 11:34:49 -0500 Subject: [PATCH] Fix --- esphome/core/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/esphome/core/__init__.py b/esphome/core/__init__.py index 73b683aa60..9896b8c87f 100644 --- a/esphome/core/__init__.py +++ b/esphome/core/__init__.py @@ -799,7 +799,8 @@ class EsphomeCore: @property def using_esp_idf(self): logging.getLogger(__name__).warning( - "CORE.using_esp_idf was deprecated in 2026.1, use CORE.is_esp32 and/or CORE.using_arduino instead." + "CORE.using_esp_idf was deprecated in 2026.1, use CORE.is_esp32 and/or CORE.using_arduino instead. " + "ESP32 Arduino builds on top of ESP-IDF, so ESP-IDF features are available in both frameworks." ) return self.target_framework == "esp-idf"