Hi,
I would like to change the orientation of the clue display by 90 degree. I added the Adafruit_GFX, Adafruit_BusIO and the Adafruit_ST7735 library files to my audrino code. Then when I add void setRotation(1);
I get the following error message:
variable or field 'setRotation' declared void
But when I add void setRotation(uint8_t 1);
expected ',' or '...' before numeric constant
So I tried But when I add void setRotation(uint8_t, 1);
expected identifier before numeric constant
Is there any parameter that I am missing?