Translation (by translate.google.com):
Good evening, KurtE. Thank you very much. I was a bit unsure of how to proceed, but I figured it out. I increased the number of cells from 4 to 7 and took the margins into account to center everything...
Bonsoir KurtE, merci beaucoup. J'étais un peu incertain de la marche à suivre, mais j'ai trouvé. J'ai augmenté les case de 4 à 7 et j'ai tenu compte des marges pour centre correctement.
In the ST7789_t3.cpp file you will see the function setRotation
void ST7789_t3::setRotation(uint8_t m)
{
beginSPITransaction();
writecommand(ST7735_MADCTL);
rotation = m % 4; // can't be higher than 3
switch (rotation) {
case 0...
Hello everyone,
I'm using a Teensy 4.0 with a 240 x 240 px TFT display. I have:
#include <Adafruit_GFX.h>
#include <ST7735_t3.h>
#include <ST7789_t3.h>
No display issues; everything works perfectly.
But how do I create a mirror effect?
Like...