You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! When I use "TFT_eSprite" to display a bitmap image I encounter an error: the image color error But it color is normal when i use "TFT_eSPI"
I am sorry for my English level.
my device:
Hi! When I use "TFT_eSprite" to display a bitmap image
I encounter an error: the image color error
But it color is normal when i use "TFT_eSPI"
I am sorry for my English level.
code:
TFT_eSPI tft = TFT_eSPI();
TFT_eSprite canvas = TFT_eSprite(&tft);
// init complete in constructor
void initCavnas(){
canvas.setColorDepth(colorDepth);
// create a sprite
canvas.createSprite(width, height);
}
class ArchitectTFTViewComponentHexImage : public ArchitectTFTViewComponent{
public:
const uint16_t* image;
int width;
int height;
ArchitectTFTViewComponentHexImage(const uint16_t* image,int width,int height){
this->image = image;
this->width = width;
this->height = height;
}
void draw(ArchitectTFTView* view,double x,double y){
canvas.setCursor((int)x,(int)y);
// error
canvas.pushImage(0, 0, width, height, image);
// normal
tft.pushImage(0,0,width,height,image)
}
};
// array size is 153600
const unsigned short backgroundImage[] PROGMEM = {
// image
}
The text was updated successfully, but these errors were encountered: