I would like to start off by giving all credit for any code or schematics to the original authors and if I don't quote the authors I deeply apologize, it is purely accidental.
I'm new to Arduino, but I've had courses in micro controllers specifically the pic16 and intro to C++ programming. I'm experienced in soldering and working with my hands.
I have a Arduino Uno R3 and I've gone through all the examples in 1. Basics. Now I'm trying to use a LCD so I can output and continue learning and tinkering.
The problem is I hooked up a WD-C2401P-1GNN LCD to my Arduino and ran a simple version of the Arduino hello world example to test it out and I'm not getting anything on the display. I made sure my solder points have continuity with PCB and no shorts. Is there something special I need to do with this LCD or do I need trouble shoot and see if it's broken.
My main questions would be.
What do I need to do to make this LCD work is possible? (Controllers?)
What do I need to check or figure out before purchasing a LCD for the Arduino in the future? (libraries?)
Can I use any LCD I salvage from any device and connect it to my Arduino?
I wanted to use this as a stepping stone before I use this Graphic LCD 128x64 STN LED Backlight
LCD-00710 LCD from spark fun on my Arduino. Which I also don't know how to wire either because the data sheet is confusing and unlabeled.
So any help with this LCD would also be appreciated. Here is the relevant data sheet.
Here is the code i used
//code from Arduino Hello world example
// include the library code:
#include <LiquidCrystal.h>
// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
// set up the LCD's number of columns and rows:
lcd.begin(24, 1); //My LCD is smaller
// Print a message to the LCD.
lcd.print("Hello World");
}
void loop() {}
The code compiled fine and uploaded. I made sure the board was working and uploaded the blink program and that worked too.
Product page
http://www.allelectronics.com/make-a-store/item/LCD-111/24-x-1-LCD/1.html
I googled how to connect this LCD and here are few useful links that might help.
Some useful links of other people using this LCD
LCD-111(1).pdf (1.31 MB)
ks0108b.pdf (157 KB)
Graphic LCD 128 x 64 STN LED backlight LCD00710 LCD sparkfun.pdf (83.9 KB)