Hi, was wondering if you have had any luck with these LCDs ? I recently purchased one and have been trying to figure it out....
Through some "reverse engineering" I have gotten text to display on it..... here is what I have so far.....
#include <LiquidCrystal.h>
// rs en d0 d1 d2 d3 d4 d5 d6 d7
LiquidCrystal lcd(11, 10, 9, 8, 7, 6, 5, 4, 3, 2);
// Pins on 2387SBGTNZ-A
// 1 - (+) Backlight
// 2 - (-) Backlight
// 3 - LCD Ground
// 4 - LCD Power
// 5 - Vee ??? Contrast ???
// 6 - Register Select ???
// 7 - R/W ???
// 8 - Enable ???
// 9 - Data 0
// 10 - Data 1
// 11 - Data 2
// 12 - Data 3
// 13 - Data 4
// 14 - Data 5
// 15 - Data 6
// 16 - Data 7
void setup()
{
// Print a message to the LCD.
lcd.begin(16, 2);
delay(2000);
lcd.print("hello, world!");
}
void loop()
{
}
I have to look carefully, because the contrast is messed up and I don't think the backlight comes on.... but I can see the text being displayed.
TJ