Use awesome fonts and use virtual screens the RA8875 display is in this way very fast with a Teensy 4.
Look herehttps://www.youtube.com/watch?v=X34qxH-2JwA
Best,
Johan
Look herehttps://www.youtube.com/watch?v=X34qxH-2JwA
Best,
Johan
Use awesome fonts and use virtual screens the RA8875 display is in this way very fast with a Teensy 4.
Look herehttps://www.youtube.com/watch?v=X34qxH-2JwA
Best,
Johan
inline void setFontDefault() {
_use_default = 1;
if(_portrait && (!_use_gfx_font || !_use_ili_font)) {
_cursorX += _cursorY;
_cursorY -= _cursorX;
}
_use_ili_font=0;
_use_gfx_font=0;
_use_int_font=1;
_use_tfont=0;
setActiveWindow();
_textPosition(_cursorX, _cursorY, false);
};
Sorry most of my playing with the RA8875 library and fonts, was with the ability to support GFX fonts as well as our ILI9341 fonts....
But if I were guessing I would try: tft.setFontDefault();
At least for turning off the ILI and GFX stuff. At least it looks promising:
Code:inline void setFontDefault() { _use_default = 1; if(_portrait && (!_use_gfx_font || !_use_ili_font)) { _cursorX += _cursorY; _cursorY -= _cursorX; } _use_ili_font=0; _use_gfx_font=0; _use_int_font=1; _use_tfont=0; setActiveWindow(); _textPosition(_cursorX, _cursorY, false); };