#include <LiquidCrystal.h>>
LiquidCrysatal lcd(12,11,5,4,3,2)
int mPin=A0;
int lmVal;
float tem;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
lcd.begin(16,2);
}
void loop() {
// put your main code here, to run repeatedly:
lmVal=analogRead(mPin);
tem=tem/10;
tem=tem-50;
lcd.setCursor(5,0);
lcd.print("LM")
}