When I try to compile the example titled helloworld I get the following error:
In file included from HelloWorld.pde:3: C:\Users\r_yob_000\Documents\Arduino\libraries\LiquidCrystal_I2C/LiquidCrystal_I2C.h:81: error: conflicting return type specified for 'virtual void LiquidCrystal_I2C::write(uint8_t)' C:\Program Files (x86)\Arduino\hardware\arduino\cores\arduino/Print.h:48: error: overriding 'virtual size_t Print::write(uint8_t)'
There seems to be a conflict between two functions returning different types.
I've tried searching the issue and found a lot of posts with similar errors.
The solution suggested is usually that a new version of the LiquidCrytal_I2C needs to downloaded. Or that one should use Arduino IDE version 1.0
I have downloaded tons of LiquidCrytal_I2C libraries and tried them all on IDE version 1.0 and 1.0.6 and I still get the same error message. I've even tried changing the LiquidCrytal_I2C.h file so that it returns the correct type and still have no luck.
You don't have to look at too many threads that contain both 'I2C' and 'LCD' in their titles to determine that you should be using the LiquidCrystal library written by 'F Malpartida' which you can find here: https://bitbucket.org/fmalpartida/new-liquidcrystal/downloads
This product has changed over the years. I ordered this LCD in 11/2015 and using the i2c scanner I found out that mine is 0x27 (like one of the other comments say). Mine came from sainsmart/amazon with the PCF8574 I2C chip.
Open up the Example > HelloWorld_I2C and change the default pin assignments to this:
#include "LiquidCrystal_I2C.h" #define BACKLIGHT_PIN (3) #define LED_ADDR (0x27) // might need to be 0x3F, if 0x27 doesn't work
LiquidCrystal_I2C lcd(LED_ADDR, 2, 1, 0, 4, 5, 6, 7, BACKLIGHT_PIN, POSITIVE) ;
These pin assignments change, thanks for the info from Using a SainSmart LCD panel with the Arduino 1.6.3 IDE⦠| brainwagon where Mark VandeWettering explains how the pin assignments can be configured in this new-lcdlibrary, in all the other libraries the pin assignments are hardcoded... so if you are having problems look at that brainwagon page. My