diff --git a/examples/DrawPaletteImage_ILI9341_4Bit/DrawPaletteImage_ILI9341_4Bit.ino b/examples/ILI9341/DrawPaletteImage_4Bit/DrawPaletteImage_4Bit.ino similarity index 98% rename from examples/DrawPaletteImage_ILI9341_4Bit/DrawPaletteImage_ILI9341_4Bit.ino rename to examples/ILI9341/DrawPaletteImage_4Bit/DrawPaletteImage_4Bit.ino index fd507d4..f05d5b8 100644 --- a/examples/DrawPaletteImage_ILI9341_4Bit/DrawPaletteImage_ILI9341_4Bit.ino +++ b/examples/ILI9341/DrawPaletteImage_4Bit/DrawPaletteImage_4Bit.ino @@ -83,6 +83,7 @@ void setup() { gfx.init(); gfx.fillBuffer(0); + gfx.drawPalettedBitmapFromPgm(0, -100 + counter % 420, img); gfx.commit(); @@ -97,7 +98,7 @@ void loop() { gfx.setColor(15); gfx.drawString(2, 2, fps); gfx.setTransparentColor(0); - gfx.drawPalettedBitmapFromPgm(0, -100 + counter % 420, img); + gfx.drawPalettedBitmapFromPgm(100, 100, img); gfx.commit(); counter++; diff --git a/examples/DrawXBM/DrawXBM.ino b/examples/ILI9341/DrawXBM/DrawXBM.ino similarity index 100% rename from examples/DrawXBM/DrawXBM.ino rename to examples/ILI9341/DrawXBM/DrawXBM.ino diff --git a/examples/RotatingCube/RotatingCube.ino b/examples/ILI9341/RotatingCube/RotatingCube.ino similarity index 100% rename from examples/RotatingCube/RotatingCube.ino rename to examples/ILI9341/RotatingCube/RotatingCube.ino