hello! I need some help with my LCD screen with adapter. Please respond quick; I need it done by Saturday.
Here is my code:
#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27,2,1,0,4,5,6,7); // Set the LCD I2C address
void setup()
{
lcd.begin (16,2); // for 16 x 2 LCD module
lcd.setBacklightPin(3,POSITIVE);
lcd.setBacklight(HIGH);
lcd.home (); // go home
lcd.print("Hello World !!! ");
lcd.setCursor ( 0, 1 ); // go to the next line
lcd.print ("I2C Address 0x27");
}
void loop()
{
lcd.scrollDisplayLeft();
delay(200);
//-----------------------
lcd.noDisplay();
delay(200);
lcd.display();
delay(200);
//-------------------------
lcd.clear();
lcd.setCursor(0,1); // column,row starts at 0
lcd.setCursor(0,5);
lcd.print("HAI..");
delay(200);
}
here is the error:
helloworld:4: error: no matching function for call to 'LiquidCrystal_I2C::LiquidCrystal_I2C(int, int, int, int, int, int, int, int)'