#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 10, 9, 8, 7);
void setup()
{
lcd.begin(16, 2);
}
void loop() {
float pot;
float sonuc;
pot=analogRead(A5);
sonuc=pot/55;
lcd.print(sonuc,3);
delay(500);
lcd.clear();
}
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 10, 9, 8, 7);
void setup()
{
lcd.begin(16, 2);
}
void loop() {
float pot;
float sonuc;
pot=analogRead(A5);
sonuc=pot/55;
lcd.print(sonuc,3);
delay(500);
lcd.clear();
}