Photon LCD Liquid Crystal Library problem

Hello,

I am experiencing the following problem with the Photon:
I have connected it to a 2 x 16 LCD correctly. When I try to run the example supplied with LYQUIDCRISTAL library, it gives me the following error ; “of lcdtest.cpp:43:27: fatal error: LiquidCrystal.h: No such file or directory”. I have included the h file in the app. Can someone help me with this?

Try changing this line


#include "LiquidCrystal.h"

To this:


#include "LiquidCrystal/LiquidCrystal.h"

Worked for me :smile:

1 Like

Works great, thanks for your help.