Hello.
Yesterday got my LCD Keypad shield, link to product etc.:
http://www.robomaa.com/index.php?main_page=product_info&cPath=15_18&products_id=419Instead of LCD4Bit library i used Arduino´s LiquidCrystal- library.
Made pin changes to code and everything worked just fine.
After i connected LM35Z temp sensor to analog input pin5 and tried to read signal that sensor outputs to Arduino the readings was pretty weird.
I stripped the program code to minimum, just read the analog signal and print it to LCD, but no.
It shows that incoming signal is 230-250 and nothing happens if i disconnect the sensor.
After hard thinking ang googling i tried program code which i made to that temp sensor.
Everything worked fine. Readings and conversions was ok.
After that i tried again that code which includes LiquidCrystal.h and readings got weird again.
So could you gurus help me with this problem?

I´m newbie with these, but i spent allmost whole workday today when tried to solve this problem but no nothing showed up.
I´ll paste that minimal program code here if there´s something wrong..
// include the library code:
#include <LiquidCrystal.h>
int tempSens = A0;
int tmp;
// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(8, 9, 4, 5, 6, 7);
void setup() {
pinMode(tempSens, INPUT);
// set up the LCD's number of columns and rows:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.clear();
}
void loop() {
delay(500);
tmp = analogRead(tempSens);
lcd.setCursor(0,1);
lcd.print(tmp);
}