Merge pull request #2 from Quency-D/dev

Merging changes
This commit is contained in:
Quency-D
2025-08-28 15:36:59 +08:00
committad av GitHub
förälder bd6bd065ac 3f5c772663
incheckning bb63f8165d
112 ändrade filer med 1873 tillägg och 271 borttagningar
+2 -1
Visa fil
@@ -4,7 +4,7 @@
#include <Wire.h>
#include <SPI.h>
#include <Adafruit_GFX.h>
#include <ST7789Spi.h>
#include "ST7789Spi.h"
class ST7789Display : public DisplayDriver {
ST7789Spi display;
@@ -30,6 +30,7 @@ public:
void setColor(Color c) override;
void setCursor(int x, int y) override;
void print(const char* str) override;
void printWordWrap(const char* str, int max_width) override;
void fillRect(int x, int y, int w, int h) override;
void drawRect(int x, int y, int w, int h) override;
void drawXbm(int x, int y, const uint8_t* bits, int w, int h) override;