/* * To use this sketch, you need to use the Arduino ESP32 filesystem uploader to upload the * images from the data directory to the SPIFFS partition on your ESP32. See * * https://github.com/me-no-dev/arduino-esp32fs-plugin for the uploader * */ #include #include #include #include "images.h" void setup() { #include #include ez.begin(); SPIFFS.begin(); } void loop() { ezMenu images; images.imgBackground(TFT_BLACK); images.imgFromTop(40); images.imgCaptionFont(&FreeSansBold12pt7b); images.imgCaptionLocation(TC_DATUM); images.imgCaptionColor(TFT_WHITE); images.imgCaptionMargins(10,10); images.addItem(system_jpg, "Settings", ez.settings.menu); // This image comes from images.h file images.addItem(SPIFFS, "/rose.jpg", "Rose"); // This and image below come from SPIFFS images.addItem(SPIFFS, "/galaxy.jpg", "Galaxy"); images.run(); }