Now I got it! Thanks for your help here. I'm not sure if it will work correctly but I used the IDE you gave me and changed the font files similarly to what kindr suggested. I change "const uint8_t various_symbols[3044] PROGMEM={" and removed the const, it compiled then, but I don't know if they need to be constants. At least I can get it to load and run now..
I assumed the .h files for the fonts do not exist and I added the contents of the fonts .c files to the .ino file.
I also made the change from "iunt8_t* const..." to "const char..." as indicated above.
However, when I compile, I get an error at every single instruction which uses any of the three fonts defined by the "const char...: instructions. The error reads as follows:
Invalid conversion from 'const char*' to unit8_t* {aka unsigned char*}' {-fpermissive}
Any idea what is going on ?
What am I missing ?
Thanks,
Last edit: 9 years 1 month ago by hjsalom. Reason: Needed to complete the description of the scenario.
I assumed the .h files for the fonts do not exist and I added the contents of the fonts .c files to the .ino file.
I also made the change from "iunt8_t* const..." to "const char..." as indicated above.
However, when I compile, I get an error at every single instruction which uses any of the three fonts defined by the "const char...: instructions. The error reads as follows:
Invalid conversion from 'const char*' to unit8_t* {aka unsigned char*}' {-fpermissive}
Any idea what is going on ?
What am I missing ?
Thanks,
Originally code was compiled with Arduino IDE 1.0.6. There are some issues with Ardino 1.6.5 when you compile this code.