What library will work with this graphic LCD?

I bought some of these graphic LCDs on ebay and can't seem to get them to work with the graphics LCD library. I'm wondering if it might not use the IC's supported by that library, but I'm not sure how to determine what chip the LCD is using. Here are some more pictures:

I emailed the ebay seller and they said they didn't know :-/

Any advice?

Your LCD probably uses another controller, as the ks0108has two CS pins.
Your LCD most likely uses a ST7920 controller, try out u8glib.

Pinout seems to be identical to this display: http://www.buy-display.com/download/manual/ERM12864-6_Series_Manual.pdf.

My suggestion is to use the serial interface to connect this display to the Arduino. Lower part of this page: http://www.buy-display.com/download/interfacing/ERM12864-6_Interfacing.pdf. Also note, that this display requires an external var pot as shown in the schematics.

U8glib (Google Code Archive - Long-term storage for Google Code Project Hosting.) should work here.

Oliver

That display definitely won't work the GLCD library.
Look at the pins. CS1 and CS2 don't exist. Instead you have PSB and a non connect pin.
That is the pinout for the ST7920 which is supported by u8glib but not by GLCD.

--- bill