M5GFX
M5GFX copied to clipboard
Cannot use drawPngFile without FS
The examples do not match the latest version. Our firmware uses drawPngFile to show images from LittleFS. It was removed in this release. Please give a new example how to use it now.
thx.
Hello, @marten-lucas .
If you want to handle the file system, please write the file system include before the M5GFX.h include.
// This order would work.
#include <FS.h>
#include <M5GFX.h>
// This order does not work.
#include <M5GFX.h>
#include <FS.h>