Example of simple draw from image for esp32-S2? #263
Unanswered
theissondergaard
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Glad somebody is using the DMA library with the S2 as I implemented the support for the h/w a few months ago after somebody kindly sent me a S2 to play with. Theoretically there should be nothing you can't do with the S2, unless of course there's some other library dependency that doesn't work with the S2. Use Larry Bank's JPEG decoder library + SPIFFS Library to store images to the ESP32 and then decode and write them to the display. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've successfully made the library work with a 64x64 panel, using a ESP32-S2 - yay!
I'm very new to all this, so forgive me for the noob question. Due to the S2, there are some of the example-projects that I can't compile, and I'm missing a simple example for how to show an image on the panel sourced from an image-file (bmp, png, any format would be fine for me). Any method would do, all the way down to defining in the byte-array in the source - my project won't require any dynamic loading from outside sources, I "just" need to show a different 64x64 pixel image on the panel, depending on pre-defined events, probably around 50 different images.
The closest I have is the bitmap icons example, but these seem to be forced to 1 color, where I would need 256.
Beta Was this translation helpful? Give feedback.
All reactions