no matter what I do I will always get this message:
Arduino: 1.8.19 (Windows 10), Board: "Arduino Uno"
HelloWorld:1:10: fatal error: LiquidCrystal_I2C.h: No such file or directory
compilation terminated.
exit status 1
LiquidCrystal_I2C.h: No such file or directory
This report would have more information with
"Show verbose output during compilation"
option enabled in File -> Preferences.
the code:
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,20,4);
void setup()
{
lcd.init();
lcd.init();
lcd.backlight();
lcd.setCursor(1,0);
lcd.print("hello everyone");
lcd.setCursor(1,1);
lcd.print("konichiwaa");
}
void loop()
{
}
I've tried everything I want in every form and can't find a solution.
What do I do?
Welcome to the forum
Your topic was MOVED to its current forum category which is more appropriate than the original as it has nothing to do with Installation and Troubleshooting of the IDE
Do you have this library installed on your PC ?
Have you tried to use the LCD examples for the LCD library that is installed?
Why not post, in code tags, your code?
Which folder are the library files installed in ?
C:\Users\evyat\OneDrive\Documents\Arduino\libraries
Which folder is the sketch in ?
C:\Users\evyat\OneDrive\Documents\Arduino
Do other libraries that you have installed work ?
At the back of my mind I have feeling that OneDrive can cause problems
Can the IDE see the library if you do sketch/Include Library ?
the other ones don't work...
Mabey it is the OneDrive I will try that
that worked thank you so much❤️
You are welcome
Good luck with your project going forward
Just to help all of us, please check Solution under UKHeliBob's post to indicate more easily it is the answer. Remember, this thread helps others too!
@anon44338819
system
Closed
April 7, 2023, 7:24pm
15
This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.