Hi, I am not very experienced in programming graphic displays with the Arduino IDE and I was wondering if anyone knew how the best way to program a 128x32 OLED display to move a predefined graphic array (below) so then it would track the required current position.
Attached is a mock up of what I want to create and I want it to scroll between 0 and 359 degrees.
To do it smoothly, you'll need to do double buffering (you draw the updated screen in one hardware buffer after sending the other buffer to be drawn).
I think the hardware can do it and the Adafruit OLED library supports it, but not sure.
I guess this isn't a very helpful post
[edit]
It's not the Adafruit library, it's from ThingPulse:
Don't know how well documented it is, but the demo I saw had very smooth movement.
Youtube channel upir_upir did a similar project... and he shows where to draw your own graphics (use youtube >> playback >> speed >> 0.5 or "pause" button to follow each step).