You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Probably i make a mistake, but others have the knowhow ^_^
Used HW: esp32 (Wemos D1 R32)
Used platform: Arduino IDE
test: Analogue_meters.ino
ERROR:
In file included from C:\Users\qx\OneDrive\Documents\Arduino\libraries\TFT_eSPI\examples\GUI Widgets\Meters\Analogue_meters\Analogue_meters.ino:18:0:
C:\Users\qx\OneDrive\Documents\Arduino\libraries\TFT_eWidget\src/TFT_eWidget.h:19:26: fatal error: LittleFS.h: No such file or directory
compilation terminated.
Solution:
Change TFT_eWidget.h
// LittleFS is required for touch calibration in TFT_eSPI sketches
#if defined (ESP8266) || defined (ESP32)
#include <pgmspace.h>
#include <FS.h>
///////////new: ********************
#if defined (ESP8266)
#include <LittleFS.h>
#elif defined (ESP32)
#include <LITTLEFS.h>
#endif
///////////End of new**************
#endif
The text was updated successfully, but these errors were encountered:
Probably i make a mistake, but others have the knowhow ^_^
Used HW: esp32 (Wemos D1 R32)
Used platform: Arduino IDE
test: Analogue_meters.ino
ERROR:
In file included from C:\Users\qx\OneDrive\Documents\Arduino\libraries\TFT_eSPI\examples\GUI Widgets\Meters\Analogue_meters\Analogue_meters.ino:18:0:
C:\Users\qx\OneDrive\Documents\Arduino\libraries\TFT_eWidget\src/TFT_eWidget.h:19:26: fatal error: LittleFS.h: No such file or directory
compilation terminated.
Solution:
Change TFT_eWidget.h
// LittleFS is required for touch calibration in TFT_eSPI sketches
#if defined (ESP8266) || defined (ESP32)
#include <pgmspace.h>
#include <FS.h>
///////////new: ********************
#if defined (ESP8266)
#include <LittleFS.h>
#elif defined (ESP32)
#include <LITTLEFS.h>
#endif
///////////End of new**************
#endif
The text was updated successfully, but these errors were encountered: