Question
Rotate Bitmap on SPI
Posted on May 15, 2015 at 13:45
Hi there , I'm using this code to display a Bitmap (stored in an array) on a TFT.
int Cnt = 128 * 128;int i = 1;SetAddrWindow(0,0,128,128);while (Cnt--) { writeData16(mainscreen[i]); i++;}
However I get my image rotated , like in landscape mode, and I want to rotate it vertically? Anyone can help me to achieve this ?I'm using a 128*128 Module with SPI interface.Thank you !!!!!!!