Good day.
This is basically my first interaction with Arduino in general (not with programming though), so I'm basically still learning the environment and finding pieces of code that would work for my taste.
The project is similar to what I read here GxEPD2 ESP32 7.3" 7Color send image from server to E-Ink, - posting information screens/images to the e-ink display.
For this I have a separate project with temp and related data, hosted on a Odroid H3 device. I am using Java (as I have worked professionally with it for quite a few years) to process the data from sensors, and most likely use JavaFX to prepare the image and post it to the screen.
I have found GxEPD2 examples and even succeeded to upload a generated (by means of image2cpp project) image to the screen.
So now I'm looking for a way to actually have a dynamic image on that screen.
Must confess that I have yet to read the entirety of GxEPD2 and similar, simply because it's a bit overwhelming to get through all of this at, basically, day 3 of me first time interacting with Arduino (zero experience).
My original idea was to prepare the image on Java's side and send it as byte array. But I quickly came to a conclusion that the result of image2cpp even in terms of array size is quite different from a regular reading of the file as byte array.
Then I saw the
showBitmapFrom_HTTP_Buffered("192.168.178.31", "/", "remote_file.bmp", 1, 1, 1); // not working,
and now I'm thinking that maybe this would be a better choice.
Can someone please point me in the right direction with this? Thanks.