1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-24 06:02:21 +01:00

Disable dependency finder on ESP32 (#2435)

This commit is contained in:
Stefan Agner
2021-10-03 21:53:40 +02:00
committed by GitHub
parent cee08debff
commit 1627dff166
10 changed files with 35 additions and 6 deletions

View File

@@ -24,6 +24,8 @@ async def to_code(config):
await cg.register_component(var, config)
if CORE.is_esp32:
cg.add_library("WiFi", None)
cg.add_library("FS", None)
cg.add_library("Update", None)
# https://github.com/esphome/ESPAsyncWebServer/blob/master/library.json
cg.add_library("esphome/ESPAsyncWebServer-esphome", "1.3.0")