Updates STM32 and Arduino refresh rates (1.54v2, 2.9v2, 7.5)

This commit is contained in:
SSYYL 2021-07-19 15:03:19 +08:00
commit 588163b176
22 changed files with 1634 additions and 7190 deletions

View file

@ -58,7 +58,7 @@ void setup()
Serial.println("e-Paper show pic");
epd.HDirInit();
epd.Display(IMAGE_DATA);
// epd.Display(IMAGE_DATA);
//Part display
epd.HDirInit();
@ -73,7 +73,7 @@ void setup()
for (i = 0; i < 10; i++) {
paint.Clear(UNCOLORED);
paint.DrawStringAt(10, 10, str[i], &Font24, COLORED);
epd.SetFrameMemory(paint.GetImage(), 80, 70, paint.GetWidth(), paint.GetHeight());
epd.SetFrameMemoryPartial(paint.GetImage(), 80, 70, paint.GetWidth(), paint.GetHeight());
epd.DisplayPartFrame();
delay(100);
}