I'm using 64x48 SSD1306 display and I'm trying to scroll 99x14pix bitmap
I've managed to do it, but I can only see 48pixel repeating itself
So I can see 1...48th pix and then again 1...48th pixel instead of 1.....99th pixel
I'm using a very simple code:
{
display.drawBitmap(0, 40, hold_kor, 99, 14, WHITE);
display.display();
display.startscrolldiagleft(15,15);
delay(8000);
display.stopscroll();
}
Is it some kind of buffer limitation?
My screen is rotated (I'm using it in vertical orientation)
thank you for your help! It is promising, the problem is the bitmap is drawing itself too quick, on top of each other?? Or I have to clean the display each time before new draw?