hello all...
I plowed the web without finding... but in fact I obviously did not know how to formulate the request correctly
so :
I succesffully load images stored in arrays such as "const unsigned short SUNSET[1024] = {......}" using a "drawImage(const uint16_t *data)" method. ( "drawImage(SUNSET)" for the method call )
then so far so good.
But I have a lot of images and I'm looking for the syntax that would allow me to pass the reference of a requested image to the display function, for example:
"drawImage(image_number44)" instead of "drawImage(SUNSET)"
Would you mind telling me how we do that?? (argh the pointers!)
Many thanks in advance