// UTFT_Rotate_Bitmap // Copyright (C)2015 Rinky-Dink Electronics, Henning Karlsen. All right reserved // web: http://www.RinkyDinkElectronics.com/ // // This program is a demo of the drawBitmap()-function. // // This program requires the UTFT library. // #include // Set the pins to the correct ones for your development shield // ------------------------------------------------------------ // Standard Arduino Mega/Due shield : ,38,39,40,41 // CTE TFT LCD/SD Shield for Arduino Due : ,25,26,27,28 // Teensy 3.x TFT Test Board : ,23,22, 3, 4 // ElecHouse TFT LCD/SD Shield for Arduino Due : ,22,23,31,33 // // Remember to change the model parameter to suit your display module! UTFT myGLCD(ITDB32S,38,39,40,41); extern unsigned short biohazard[0x1000]; void setup() { myGLCD.InitLCD(LANDSCAPE); myGLCD.fillScr(255, 255, 255); myGLCD.setColor(0, 0, 0); } void loop() { for (int i=0; i<360; i+=5) { myGLCD.drawBitmap (10, 10, 64, 64, biohazard, i, 32, 32); } }