I’ve hit an error message attempting to compile Marlin for my Arduino/Ramps. I’ve installed U8glib (as per the instructions) and can see it on the Sketch/Include library/Contributed libraries menu, and when I select that, two include statements are added to the top of the Marlin sketch
#include <U8x8lib.h>
#include <U8g2lib.h>
but when I verify or upload it, I get this error:
Multiple libraries were found for "U8x8lib.h"
Used: /home/robin/Arduino/libraries/U8g2
sketch/src/HAL/HAL_AVR/u8g_com_HAL_AVR_sw_spi.cpp:65:10: fatal error: U8glib.h: No such file or directory
#include <U8glib.h>
^~~~~~~~~~
compilation terminated.
exit status 1
Error compiling for board Arduino/Genuino Mega or Mega 2560.
U8g installed into:
/home/robin/Arduino/libraries/U8g2/
Marlin is in:
/home/robin/Arduino/Marlin-MP3DP_Ramps_16T_MK/Marlin/
This is on a Linux PC, running Arduino 1.8.10 I’m not sure what else might be useful.
I’ve only really dabbled in Arduino code before, so I’ve probably done something silly.
Any suggestions?