Hi all!
I'm trying to revive an old weight scale from my university lab.
It has a PHICO D-0 94V-0 16x1 (or 8x2?) LCD with this samsung controller which is supposed to be compatible with the LiquidCristal libraries. I an trying to use that because it would be awesome - and i don't have any other LCD.
I've tried to setup the thing with the datasheet: Datasheet
And this is the sketch
#include <LiquidCrystal.h>
// initialize the library with
// the numbers of the interface pins
LiquidCrystal lcd(5, 6, 7, 8, 9, 10);
void setup() {
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.print("hello, world!");
}
void loop() {
// set the cursor to column 0, line 1
// (note: line 1 is the second row,
// since counting begins with 0):
// lcd.setCursor(0, 1);
// print the number of seconds since reset:
// lcd.print(millis()/1000);
}
I've tracked the connector to the chip with my multimeter and it's supposed to be like that:
1 | GND |
---|---|
2 | VDD |
3 | V5 (there are also V0 to V4 but not connected) |
4 | RS |
5 | R/W |
6 | E |
7 | DB0 |
8 | DB1 |
9 | DB2 |
10 | DB3 |
11 | DB4 |
12 | DB5 |
13 | DB6 |
14 | DB7 |
(it's visible in one pic)
Nothing shows up, not a light, not even a sign. How do i test if it is alive or maybe it's completely death?
In the LCD VDD pin i can read 4,7V, not 5.
In the sketch i've declared lcd with pins from 5 to 10 (d2 to d7) and should be fine.. but not sure.
It's the cable too long?? The soldering should be ok, i can test the continuity with multimeter directly from the chip to the arduino..
V5 has been tested either disconnected or connected to 5v.
This is the arduino 128 version.
I'm going little crazy! Any help appreciated. Thanks for your time!
Greetings from Italy.
Francesco.