void setup() { Serial.begin(115200); } void loop() { int potvalue = analogRead(27); Serial.println(potvalue); delay(50); }