Everytime I try to install a config on my liligo POE board I get this error:
`INFO ESPHome 2025.6.3
INFO Reading configuration /config/esphome/btproxy-liligopoe.yaml...
INFO Generating C++ source...
INFO Updating https://github.com/espressif/esp-protocols.git@mdns-v1.8.2
INFO Compiling app...
Processing btproxy-liligopoe (board: esp32dev; framework: espidf; platform: https://github.com/pioarduino/platform-espressif32/releases/download/53.03.13/platform-espressif32.zip)
HARDWARE: ESP32 240MHz, 320KB RAM, 4MB Flash
- framework-espidf @ 3.50302.0 (5.3.2)
- tool-cmake @ 3.30.2
- tool-esptoolpy @ 4.8.6
- tool-mklittlefs @ 3.2.0
- tool-ninja @ 1.7.1
- tool-riscv32-esp-elf-gdb @ 14.2.0+20240403
- tool-xtensa-esp-elf-gdb @ 14.2.0+20240403
- toolchain-esp32ulp @ 2.35.0-20220830
- toolchain-xtensa-esp-elf @ 13.2.0+20240530
Reading CMake configuration...
-- git rev-parse returned 'fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).'
-- Building ESP-IDF components for target esp32
-- Configuring incomplete, errors occurred!
fatal: not a git repository (or any parent up to mount point /)
Stopping at filesystem boundary (GIT_DISCOVERY_ACROSS_FILESYSTEM not set).
CMake Error at /data/cache/platformio/packages/framework-espidf/tools/cmake/build.cmake:552 (message):
/root/.platformio/penv/.espidf-5.3.2/bin/python: Error while finding module
specification for 'idf_component_manager.prepare_components'
(ModuleNotFoundError: No module named 'idf_component_manager')
Call Stack (most recent call first):
/data/cache/platformio/packages/framework-espidf/tools/cmake/project.cmake:710 (idf_build_process)
CMakeLists.txt:3 (project)
========================== [FAILED] Took 2.26 seconds ==========================`
Here is my config:
`esphome:
name: btproxy-liligopoe
friendly_name: BTProxy_LiligoPOE
min_version: 2025.5.0
esp32:
board: esp32dev
framework:
type: esp-idf
version: recommended
logger:
level: VERY_VERBOSE
api:
encryption:
key: "It2yPZIl8F+LbaoCogWHH8nD3AhrUR3avLyIX34YEsk="
ota:
- platform: esphome
password: "33014fdf8bedb5888bfc6cfdd444e732"
esp32_ble_tracker:
scan_parameters:
interval: 1100ms
window: 1100ms
active: true
bluetooth_proxy:
active: true
cache_services: true
button:
- platform: safe_mode
name: (Safe Mode)
entity_category: diagnostic
ethernet:
type: LAN8720
mdc_pin: GPIO23
mdio_pin: GPIO18
clk_mode: GPIO17_OUT
phy_addr: 0
Change the ethernet config to a static IP if needed
manual_ip:
static_ip: 192.168.4.5
gateway: 192.168.4.1
subnet: 255.255.255.0
dns1: 192.168.1.3`