This commit is contained in:
e2002
2022-07-18 11:17:11 +03:00
parent 1d02826166
commit f123c71d04
10 changed files with 2054 additions and 24 deletions

View File

@@ -2,7 +2,7 @@
#define displayILI9225_h
#include "Arduino.h"
#include "TFT_22_ILI9225.h"
#include "../ILI9225Fix/TFT_22_ILI9225Fix.h"
#include "fonts/DS_DIGI28pt7b.h"
#define TFT_LINEHGHT 10
@@ -72,6 +72,7 @@ class DspCore: public TFT_22_ILI9225 {
uint16_t color);
int16_t width(void) { return (int16_t)maxX(); }
int16_t height(void) { return (int16_t)maxY(); }
void drawRGBBitmap(int16_t x, int16_t y, const uint16_t *bitmap, int16_t w, int16_t h);
private:
uint16_t swidth, sheight;
uint16_t bgcolor, fgcolor;