ESP32-解决“compoenent mdns could not be found“问题

The component mdns could not be found

ESP32 IDF5.0 已经移出很多组件。如果直接用5.0环境编译4.0的工程可能会报错。使用

移除的组件(libsodium、cbor、jsmn、esp_modem、nghttp、mdns、esp_websocket_client、asio、freemodbus、sh2lib、expat、coap、tjpgd、tinyusb)

 解决此问题有两种方法。建议用第②种。

①将mdns服务组件作为托管组件。(存在目录混乱问题)

调用指令即可在工程目录生成。idf.py add-dependency "espressif/mdns^1.1.0"

②下载mdns.gz 并解压到comments里。

你可能感兴趣的:(嵌入式开发,单片机)