LiquidCrystal_I2C

Hi,

Going grey haired over the following.
Get a general compile error from the following.
/Users/prc/Documents/Arduino/libraries/LCD/LiquidCrystal_I2C.cpp:32: error: prototype for 'LiquidCrystal_I2C::LiquidCrystal_I2C(uint8_t, uint8_t, uint8_t)' does not match any in class 'LiquidCrystal_I2C'

Using IDE 1.5.5 on Mac OSX 10.9.1
(Compiles ok on XP IDE 1.0.5)

#include <Wire.h>
#include <LCD.h>
#include <LiquidCrystal_I2C.h>
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}

For the LiquidCrystal_I2C what should reside in LCD library and should i have a LiquidCrystal_I2C library ????

Cheers

You should paste your code using the code tags given by the # icon.

The code, as you posted it, compiles on Arduino IDE 1.0.5.
What board are you trying to use it on?

Hi,

Corrected :.

#include <Wire.h>
#include <LCD.h>
#include <LiquidCrystal_I2C.h>
void setup() {
  // put your setup code here, to run once:
}
void loop() {
  // put your main code here, to run repeatedly:
}

No board connected, but A UNO, just using the Compile function.

BUT resolved, I have an XP machine where is compiles OK, so I copied the full Libraries from that and overwrote the Libraries on the MAC, all now compiles

Cheers
Peter

Ok but I was compiling it on a Mac.