#include <LiquidCrystal.h>
LiquidCrystal lcd(13,12,11,10,9,8,7,6,5,4);
int aR;
float aRF;
void setup() {
// put your setup code here, to run once:
lcd.begin(16,2);
lcd.setCursor(0,0);
lcd.print("Analog Read");
}
void loop() {
// put your main code here, to run repeatedly:
lcd.setCursor(0,1);
aR=analogRead(0);
lcd.print(aR);
aRF=aR*(3.3/1024);
lcd.setCursor(8,1);
lcd.print(aRF);
delay(1000);
//lcd.clear();
}