We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd88579 commit b0e58dbCopy full SHA for b0e58db
components/nspanel_lovelace/__init__.py
@@ -672,6 +672,9 @@ async def to_code(config):
672
cg.add_library("WiFiClientSecure", None)
673
cg.add_library("HTTPClient", None)
674
elif core.CORE.using_esp_idf:
675
+ ## todo: Remove this condition by esphome version 2026.6.x
676
+ if hasattr(esp32, "include_builtin_idf_component"):
677
+ esp32.include_builtin_idf_component("esp_http_client")
678
esp32.add_idf_sdkconfig_option("CONFIG_ESP_TLS_INSECURE", True)
679
esp32.add_idf_sdkconfig_option(
680
"CONFIG_ESP_TLS_SKIP_SERVER_CERT_VERIFY", True
0 commit comments