how to display jpeg on the 5" display
I have a 5" cropanel display where I want to display video recived as jpeg images via websocket from an ESP32 CAM. I have the display working so far. Can display text and simple graphics under LovyanGFX and touch buttons with cb under LVGL. But no idea how to display the received JPEG or any other JPEG on the screen, need help or hint
Tagged:
Comments
You’ll need to decode the JPEG before displaying. A simple way is with TJpg_Decoder + LovyanGFX: receive the JPEG via WebSocket, decode it, then draw it on the screen. If you want more details on ESP32 video streaming and display, take a look at pinvideo.org