This is my second post on this issue.
My hardware/software setup: Ardunio UNO R3, Grove Shield v 1.2, Grove Serial LCD v 1.1b, Ardunio 1.0 software.
My program code:
#include <SoftwareSerial.h>
// include the library code:
// #include <SerialLCD.h>
// #include <NewSoftSerial.h> //this is a must
// initialize the library
SerialLCD slcd(11,12);//this is a must, assign soft serial pins
void setup() {
// set up :
slcd.begin();
// Print a message to the LCD.
slcd.print(“hello, world!”);
}
void loop() {
// Turn off the blinking cursor:
slcd.noBlink();
delay(1000);
// Turn on the blinking cursor:
slcd.blink();
delay(1000);
}
I have read several posts on this subject and downloaded all of the LCD library files that were mentioned. I now have several
“.h” and “.cpp” files in my Ardinio/libraries/LiquidCrystal folder.
I can’t reprint error messages since they vary greatly with the liobrary(ies) used.
Can someone provide with the the correct “.zip” file(s) contining the library(ies) for used with the 1.1b serial LCD? Are files other than “.h” and ".cpp required in the Ardinio/libraries/LiquidCrystal folder?
Also, the 1.1b LCD module has only one 4-pin connector. Where do I connect the cable on version 1.2 shield?
Thank you.
Ken