I am trying to get this LCD working, but it seems nothing I do works.
I started searching around, and I found a link, but it's dead. Link:
www.cyberblob.net/parallaxlcd.zipMy code isn't working either. Here is my code:
void setup() {
Serial.begin(9600);
}
void loop() {
lcd_turnOn();
lcd_backlightOn();
}
void lcd_clear() {
Serial.write(12);
delay(5);
}
void lcd_newLine() {
Serial.write(13);
}
void lcd_turnOn() {
Serial.write(22);
}
void lcd_backlightOn() {
Serial.write(17);
}
void lcd_backlightOff() {
Serial.write(18);
}
And on the back of the LCD device, I have switch 1 set to off, and switch 2 set to on, which is what they ask me to do in the documentation.
I've also tried changing all "Serial.write" to "Serial.print" and "Serial.println" and nothing happened still.
So does anyone know what I can do to get this thing working? The examples shown on the documents provided by Parallax are not for Arduino, and are in BASIC. Docs:
http://www.parallax.com/dl/docs/prod/audiovis/SICSerialLcd.pdfAny help would be highly appreciated!