Hi,
I connect a simple nokia LCD to arduino and I can use it with simple functions.
I used a schematic like this:
and
Modifying this:
int LCD_DC_PIN = 2; // PB0 4 Data Command
int LCD_CE_PIN = 3; // PB2 5 /CS active low chip select ??
int SPI_MOSI_PIN = 4; // PB3 3 Serial line
int LCD_RST_PIN = 5; // PB4 8 /RES RESET
int SPI_CLK_PIN = 6; // PB5 2 CLOCK
with my pin-out I was able to run this code:
http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1200398529/16#16
But i wanted to use this library
http://blog.thiseldo.co.uk/?p=383
That library is very powerful since it has lots of functions to draw,
but i'm not sure how to make it work without the LCD shield.
Any idea?
Thanks for your help!