Hello everyone! Totay I tried to do flappybird using ssd1306 and joystick. And I always running out of ram if I use Adafruit library, and because of that I'm using ssd1306ascii lib. I need to setcursor using pixels not setCursor(x,col).
How can i do that?
Is not possible in the library ssd1306ascii
This library works with characters, not points, and you can only move coursor along rows and columns.
That is why the library does not require so much memory and you do not encounter with "out of ram" issue using it
Maybe i can somehow modify library code to do it?
Maybe using custom font with only points?
you can try
You might also try the U8g2 library using a page buffer, that takes considerably less memory then a full buffer.
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.