error for LCD screen:

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)'

Please respond quick; I need it done by Saturday.

You still have plenty of time to look through the other posts with titles containing both LCD and I2C (which yours does not). You should have your problem solved in just a few minutes.

Don

Okay. I'll wait

Kit-KatKarateKat:
Okay. I'll wait

Wait for what?
Don said you have plenty of time to search the forum for the answers yourself.

--- bill

Wait ?

An extra lesson to learn from this exercise will be:
Don't wait for others to solve your problems, solve them yourself.

You were given a hint, so use that to solve the problem.
It'll be an extra opportunity to learn something useful.