Unable to figure out why 'LittleFS' was not declared in this scope #96
-
Hi all, For a project I am trying to use the ESPAsync_WiFiManager but all the examples seem to be getting the same error. It does not seem to be the same as issue #95 since I am using 2.0.3 as framework. The Build log.txt is attached. Does anyone have any suggestions on how to fix this? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Check Prerequisites
As you're using the new ESP32 cores v2.0.3 with built-in LIttleFS, you don't need Lorol's LITTLEFS library anymore. Especially you're using the recent PIO version supporting new ESP32 core v1.0.6+ You can try to comment out the following line in platformio.ini If not OK, try to compile using Arduino IDE to see if there is anything wrong with your installation. Then moving on to PIO. Good Luck, |
Beta Was this translation helpful? Give feedback.
Check Prerequisites
As you're using the new ESP32 cores v2.0.3 with built-in LIttleFS, you don't need Lorol's LITTLEFS library anymore. Especially you're using the recent PIO version supporting new ESP32 core v1.0.6+
You can try to comment out the following line in platformio.ini
ESPAsync_WiFiManager/platformio/platformio.ini
Line 45 in 41f6479
If not OK, try to compile using Arduino IDE to see if there is anything wrong with your installation. Then moving on to PIO.
Post the issue on PIO Forum f…