// 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);
}