Once I fixed my code from :-
unsigned char font PROGMEM = {
to
const unsigned char font PROGMEM = {
I get compiling errors on my code below :-
Arduino\libraries\SSD1306_text\SSD1306_text.cpp:124:26: error: invalid conversion from ‘const unsigned char*’ to ‘uint8_t* {aka unsigned char*}’ [-fpermissive]
uint8_t *base = font + 5 * c;
^
Any idea on how to fix this compile errors ??
Here is the URL to the text only library :-