I am trying to set up an lcd display with an i2c interface. I am using an arduino pro mini and the on-line /create.arduino.cc/editor/
I found a library on the web:
Arduino-LiquidCrystal-I2C-library
downloaded it and uploaded it into the web editor. I loaded an example program (HelloWorld) into the editor:
#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();
// Turn on the blacklight and print a message.
lcd.backlight();
lcd.print("Hello, world!");
}
void loop()
{
// Do nothing here...
}
When I try to compile it I get an error
no matching function for call to 'LiquidCrystal_I2C::begin()'
Am I doing something wrong or is the library corrupt?
Is there a better library for this?