Skip to content

Commit

Permalink
Remove redundant spitftbitmap_rotate example
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulStoffregen committed Nov 25, 2016
1 parent 4bacb5d commit 926fcd7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 199 deletions.
8 changes: 8 additions & 0 deletions examples/spitftbitmap/spitftbitmap.ino
Expand Up @@ -52,6 +52,14 @@ void setup(void) {
}

void loop() {
// uncomment these lines to draw bitmaps in different locations/rotations!
/*
tft.fillScreen(ST7735_BLACK); // Clear display
for (int i=0; i<4; i++) // Draw 4 parrots
bmpDraw("parrot.bmp", tft.width() / 4 * i, tft.height() / 4 * i);
delay(1000);
tft.setRotation(tft.getRotation() + 1); // Inc rotation 90 degrees
*/
}

// This function opens a Windows Bitmap (BMP) file and
Expand Down
199 changes: 0 additions & 199 deletions examples/spitftbitmap_rotate/spitftbitmap_rotate.ino

This file was deleted.

0 comments on commit 926fcd7

Please sign in to comment.