OK, I have no choice but to ask a question. I've been trying to get this thing to work for 2 days. I've been reading non stop, videos up the ying yang, my favorite vids...30 seconds showing the display work...like 50 of them!
Pro Mini 328 5v: http://www.ebay.com/itm/221402511375?ssPageName=STRK:MEWNX:IT&_trksid=p3984.m1439.l2649
1.8" 128*160 SPI TFT LCD Display: http://www.ebay.com/itm/360830297720?ssPageName=STRK:MEWNX:IT&_trksid=p3984.m1439.l2649
No matter what sketch I've used I get nothing on the display.
I know the sketch is running because I can see it on the serial monitor.
I have connected the proper SPI pins(8 pins) from the screen to the proper pins on the pro mini as per the sketches.
All I get is a whit screen...no nothing, not a flicker, a dimming, notta!
I did some research before I bought anything and it looks pretty straight forward.
What I want to make is a simple voltmeter to show me the cell voltages of the lipo batteries in my RC airplane. I have 2 cell batteries for my receiver, two in parallel and the same thing for the ignition battery. It will mount in the plane and I want to hit a momentary button and it will show me the cell voltages one at a time.
I can't see just getting an LCD display to work as being mind bending...it's requisite to the whole project.
Is there something hidden in bowls of the internet that I need to know? I'm at my wits end with this.
Here is a classic example of the pin asignments in the regular speed sketch...and yes I have the green plastic tab...changed that.
// For the breakout, you can use any (4 or) 5 pins
#define sclk 4
#define mosi 5
#define cs 6
#define dc 7
#define rst 1 // you can also connect this to the Arduino reset
//Use these pins for the shield!
//#define sclk 13
//#define mosi 11
//#define cs 10
//#define dc 8
//#define rst 0 // you can also connect this to the Arduino reset
High speed test
// For the breakout, you can use any (2 or) 3 pins
//#define sclk 13
//#define mosi 11
#define cs 10
#define dc 9
#define rst 8 // you can also connect this to the Arduino reset
//Use these pins for the shield!
//#define cs 10
//#define dc 8
//#define rst 0 // you can also connect this to the Arduino reset
I also have VCC +5v, GRN and BL +5v.
Any help on this would be just awesome.
Thanks
Rick