hello i just fired up my first display on an arduino i have only had simple adruino use needs, up till now !
i have built a pneumatic press witch pushes press pins in for me its a simple thing that the arduino handles i have a mega doing it i know its over kill so i thought i would add on for fun so i picked up a liner transducer and a air pressure transducer sensor and there some math with pie i can write a value to the serial communication the foot pounds of pressure being applied to the press pin ,.. why ?
well just because we can right ? there not real need to know im just having fun with the project
that being said i picked up a
SainSmart Mega2560 R3 + 3.2" TFT Touch LCD SD Card + TFT Shield Kit For Arduino
and got the libraries up and running and the example demo code working and then played around with the example demo code a bit got some brownie points leaving a repeating text message fort he girl friend before i left for work , so she could find it later on the desk top !
ok so now that i gave some back ground and we all up to speed here what im trying to do the pin press transducer gives me a value for the foot pounds applied to the pin when it is press i would like to use this display to get a read out installed on the press for every time it is activated it displays the rising pressure number to the tft lcd !
so i was able to modfie the example code to right the girl friend a message but that was a print line (" I LOVE YOU " )
and i need a print line that is more like this
{
myGLCD.setFont(SevenSegNumFont);
myGLCD.setColor(0, 255, 0);
myGLCD.print("psi", 200, 0, 90);
myGLCD.print( SensorValue , 200, 0, 90);}
but it dose not seem to like this can i not display a value that is live being read by and anlog pin live to the display ?