I need help i have a robo r1 plus and im trying to add a lcd screen but i cannot get this file to work no matter what ive tried please someone help
Post the sketch, wiring and connection diagram as well the data sheet to see how we can help.
I moved your topic to an appropriate forum category @skefabite
In the future, please take some time to pick the forum category that best suits the subject of your topic. There is an "About the _____ category" topic at the top of each category that explains its purpose.
This is an important part of responsible forum usage, as explained in the "How to get the best out of this forum" guide. The guide contains a lot of other useful information. Please read it.
Thanks in advance for your cooperation.
Hi @skefabite.
The compilation failure is caused by an error at line 12 of the dogm_font_data_marlin.h
file. There is a stray double quote character ("
) at the end of the filename in the #include
directive:
#include <U8glib.h">
Remove that double quote character:
#include <U8glib.h>
Then try compiling again.
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.