when I send the code I received this message
MY BORD IS ; arduino mega 2560
and I use it LCD display 2*16 with I2C "FC-113"
ATTENTION : La catégorie 'Display, Hangul' dans la bibliothèque LiquidCrystal_I2C_Hangul n'est pas valide. Définition sur : 'Uncategorized'
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,20,4); // set the LCD address to 0x27 for a 16 chars and 2 line display
void setup()
{
lcd.init(); // initialize the lcd
lcd.init();
// Print a message to the LCD.
lcd.backlight();
lcd.setCursor(5,0);
lcd.print("KHALIL");
lcd.setCursor(5,1);
lcd.print("BOUANZI");
}
void loop()
{
}
It's ok for the address.
I don't understand why you get this error message. The example from the library does the same:
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
// Set the LCD address to 0x27 for a 16 chars and 2 line display
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup()
{
// initialize the LCD
lcd.begin();
}
Can you please verify if you have the same example in your library's folder, called BlinkingCursor, and if the first lines are the same as above ?
Also, do you know the version of your library ? Does it appear in the library manager? If yes, can you tell me the information about it (post it as a picture, as you already did)?
There may exist another library with the same name...
The library is in the 'library' folder in your standard 'Arduino' folder, the latter being in 'MyDocuments' or something similar. But it seems you also have one version of the library on your desktop (Bureau), try to erase that copy.
If you want to install it again, first erase it from the 'library' folder. Then go here and click "clone or download" and choose download zip.
Then unzip the downloaded archive, and move the folder to your 'library' folder. If the name of that new folder contains "master" or "-master", remove that part from the name.
Restart the Arduino IDE, and try again...
.
.
.
Good luck
This one maybe, and it requires that you also install the streaming library which is quite cool to use anyways by itself (for quicker Serial.print programming).