There is a tft.updateScreenAsync(); command you could try but I do not now how to use it.
It is probably used with other commands like waitUpdateAsyncComplete();
endUpdateAsync();
asyncUpdateActive();
I do not know how any of these are used.
I...
Yes, it is all determined by the tft.setCursor command.
if it is within the scroll area then it can scroll.
In the example I print the touch button in the static area then go back to the scroll area tft.setCursor(0, 304); on the bottom line.
You...
I also found a command that will let you force the scrolling.
tft.scrollTextArea(5);
I used this to create a smoother crawl up the screen even before the text gets to the bottom.
```cpp
This is our GFX example for the Adafruit ILI9488...
I have completely fixed the scrolling problem I was having.
I found an other ScollTest example for the ST7735_t3 library that had the proper use of the frame buffer in it.
All that was needed was to enable the frame buffer before the scroll...
I have a few of the ILI9488 displays and always have had to leave the MISO disconnected for it to work at all.
I know it will not be possible to read from the display without it.
I think this is one of those displays you cannot read from.
The...
Yes, I tried all 4 directions on this and it did the same thing.
I think I may have a fundamental misunderstanding of how scrolling works on this display.
The bottom line works and updates correctly.
I may be able to think of a way to go around...
I was trying out the scrollTest example that is part of the ILI9488_t3 library and it generated color bars as soon as the text gets to the bottom of the screen.
Attached is a photo.
I am new to coding but usually can get an example to work right...