ImagesSPIFFSorSD.ino 943 B

1234567891011121314151617181920212223242526272829303132333435
  1. /*
  2. * To use this sketch, you need to use the Arduino ESP32 filesystem uploader to upload the
  3. * images from the data directory to the SPIFFS partition on your ESP32. See
  4. *
  5. * https://github.com/me-no-dev/arduino-esp32fs-plugin for the uploader
  6. *
  7. */
  8. #include <M5Stack.h>
  9. #include <M5ez.h>
  10. #include <SPIFFS.h>
  11. #include "images.h"
  12. void setup() {
  13. #include <themes/dark.h>
  14. #include <themes/default.h>
  15. ez.begin();
  16. SPIFFS.begin();
  17. }
  18. void loop() {
  19. ezMenu images;
  20. images.imgBackground(TFT_BLACK);
  21. images.imgFromTop(40);
  22. images.imgCaptionFont(&FreeSansBold12pt7b);
  23. images.imgCaptionLocation(TC_DATUM);
  24. images.imgCaptionColor(TFT_WHITE);
  25. images.imgCaptionMargins(10,10);
  26. images.addItem(system_jpg, "Settings", ez.settings.menu); // This image comes from images.h file
  27. images.addItem(SPIFFS, "/rose.jpg", "Rose"); // This and image below come from SPIFFS
  28. images.addItem(SPIFFS, "/galaxy.jpg", "Galaxy");
  29. images.run();
  30. }