Testing keyboard poll

This commit is contained in:
2022-10-29 05:33:59 +03:00
parent 35b78ff656
commit 333a945cd6
6 changed files with 77 additions and 8 deletions

View File

@@ -708,7 +708,7 @@ void ST7789_Test(void)
ST7789_WriteString(10, 50, "Hello Steve!", Font_7x10, RED, WHITE);
ST7789_WriteString(10, 75, "Hello Steve!", Font_11x18, YELLOW, WHITE);
ST7789_WriteString(10, 100, "Hello Steve!", Font_16x26, MAGENTA, WHITE);
HAL_Delay(1000);
HAL_Delay(5000);
ST7789_Fill_Color(RED);
ST7789_WriteString(10, 10, "Rect./Line.", Font_11x18, YELLOW, BLACK);
@@ -740,8 +740,4 @@ void ST7789_Test(void)
ST7789_DrawFilledTriangle(30, 30, 30, 70, 60, 40, WHITE);
HAL_Delay(1000);
// If FLASH cannot storage anymore datas, please delete codes below.
ST7789_Fill_Color(WHITE);
ST7789_DrawImage(0, 0, 128, 128, (uint16_t *)saber);
HAL_Delay(3000);
}