nopnop2002
nopnop2002
>I'm trying to get text to refresh without a wasted frame where a black rectangle is drawn over it. I don't know what kind of drawing you want.
@randyfan >Is there any method that goes straight from one string to another string? ``` lcdFillScreen(dev, BLACK); strcpy((char *)ascii, "ABC"); lcdDrawString(dev, fx, xpos, ypos, ascii, WHITE); // Display ABC vTaskDelay(1000);...
>Is it possible to draw everything in a frame buffer and then paint the screen at once? What is a frame buffer? Do you mean all Pixel data? If you...
>If one could write all pixel data in a buffer[screen_x][screen_y] and swap all pixel in one draw call, There is lcdDrawMultiPixels(). You will draw RED square. ``` uint16_t PixelData[16][16]; for...
This is done if _font_fill is valid: https://github.com/nopnop2002/esp-idf-st7789/blob/42705cd3a0c99f917f37920db310e5d22303b0e1/main/st7789.c#L751
The reset timing may be different for each TFT.
I think there is an electrical problem around reset circuit in the breakout without the CS pin. Perhaps the reset circuit requires a lot of current. I inserted a 100...
As you can see from the source, the usage of the BxCan register is different for each model. The code I provide doesn't work properly on other models. Even if...
as far as I know F103 and others are too different. They are almost different code. Check with my code. Almost impossible to merge,
>are you able to create an example arduino program for one IC What is one IC?