I am intermediate programming: (not quite beginner)
Question using u8x8 i want to make a font array variable
lets say font[2]
font[0]=smallfont
font[1]=mediumfont
font[2]=largefont
u8x8.setFont(font[1]);
im getting an error like this
i tried #define smallfont which works but is not dynamic in the program
like to build a program which iterates thru a range of fonts
thanks in advance