I'm new to Arduino program and Arduino forum so i don't know how to post but this is the best i can do.
In few days i have a school competition and I'm using Arduino Uno, I'm gonna need LCD display on the competiton so i wanted to start with a basic program, i found a guy, got the libraries and everything, copied the program, but i keep getting this error, im using a converter(I don't know how it is called but the thing that gets 16 pins from LCD in 4) and i tried everything i could, any ideas?
#include <Wire.h>
#include <LiquidCrystal.h>
LiquidCrystal_I2C lcd(0x27, 2, 1, 0, 4, 5, 6, 7, 3, POSITIVE);
void setup() {
lcd.begin(16.2);
lcd.clear();
lcd.print('Hello World!');
}
This report would have more information with
"Show verbose output during compilation"
enabled in File > Preferences.
Arduino: 1.0.6 (Windows NT (unknown)), Board: "Arduino Uno"
sketch_feb26a:5: error: 'LiquidCrystal_I2C' does not name a type
sketch_feb26a.ino: In function 'void setup()':
sketch_feb26a:8: error: 'lcd' was not declared in this scope
lcd.ino (194 Bytes)