ESP-WROVER-KIT Missing Libraries
Posted: Mon Dec 05, 2022 11:13 pm
I have purchased an ESP-WROVER-KIT because of its built in support for debugging, its built-in SD reader, and other features. I am using Platformio and VSCode with Arduino framework as such:
However, upon compiling a trivial sketch, it seems to be missing several important library dependencies. As examples, the following lib dependencies are not satisfied due to other libraries they reference:
Here are the specific errors that are thrown:
How do I rectify this? Surely these basic libraries, used widely by lots of apps, must be available.
Thanks, Stephen
Code: Select all
[env:esp-wrover-kit]
platform = espressif32
board = esp-wrover-kit
framework = arduino
Code: Select all
lib_deps =
ropg/ezTime@^0.8.3
khoih-prog/AsyncHTTPRequest_Generic @ ^1.3.1
https://github.com/me-no-dev/ESPAsyncWebServer
Code: Select all
.pio\libdeps\esp-wrover-kit\ezTime\src\ezTime.cpp:10:22: fatal error: EEPROM.h: No such file or directory
.pio\libdeps\esp-wrover-kit\ESP Async WebServer@src-a443f98271f72ebdf994862eb2a99c40\src/ESPAsyncWebServer.h:27:16: fatal error: FS.h: No such file or directory
.pio\libdeps\esp-wrover-kit\ESP Async WebServer@src-a443f98271f72ebdf994862eb2a99c40\src/ESPAsyncWebServer.h:27:16: fatal error: FS.h: No such file or directory
Thanks, Stephen