Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

issue about TFT_eSprite.pushImage #3683

Open
HcFrostmorune opened this issue Mar 16, 2025 · 0 comments
Open

issue about TFT_eSprite.pushImage #3683

HcFrostmorune opened this issue Mar 16, 2025 · 0 comments

Comments

@HcFrostmorune
Copy link

HcFrostmorune commented Mar 16, 2025

my device:

  • ESP-WROOM-32
  • ILI9341 and 2.3inch TFT(320*240)

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
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant