I'm using the ACROBOTIC_SSD1306.h library for my oled. Now i want to draw the letter "A" on a specific position, but those coordinates should be variables.
As an example:
oled.setTextXY(1,1);
oled.putString("100 ");
Works. But now, 1,1 should be saved in variable, like
uint8_t xcoordinate = 1;
uint8_t ycoordinate = 1;
oled.setTextXY(xcoordinate,ycoordinate);
oled.putString("100 ");