Grove LCD 0802 not working with example code version 0.9

// Project Six - LCD demonstration
//

#include <LiquidCrystal.h>

LiquidCrystal lcd(1,2,3,4,5,6);
Hello, I own a pre series Grove Kit. I try to control the small LCD, but it is not working with the given example.

garden.seeedstudio.com/index.php … onstration

This is the link for the code, but at the first I have a problem with the library, the only LCD library, which I have downloaded from seeedstudio, is awaiting for 7 pins, in the given example only 6 pins are used. Maybe I am using the wrong library, but I can’t find a better one (through a rare documentation).

Please help me. I like this display and can’t wait to use it.
Regards Randolf Balasus
// Project Six - LCD demonstration
//

#include <LiquidCrystal.h>

LiquidCrystal lcd(1,2,3,4,5,6);

void setup()
{
lcd.begin(8,2);
}

void loop()
{
lcd.clear();
lcd.setCursor(0,0);
lcd.print(“01234567”);
lcd.setCursor(0,1);
lcd.print(“ABCDEFGH”);
delay(65000);
}

I have the same problem.

please try again, but don’t use the Seeedstudio library - use the LiquidCrystal library that comes preinstalled with the Arduino IDE.

Does it have to do with the defferrent version of Arduino IDE?

I have try it the way the following website show:
seeedstudio.com/depot/lcd-82 … e7ed093677
it works fine.