void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
pinMode(A1,INPUT);
}
void loop() {
// put your main code here, to run repeatedly:
int a= analogRead(A1);
delay(1000);
Serial. println(a);
}
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
pinMode(A1,INPUT);
}
void loop() {
// put your main code here, to run repeatedly:
int a= analogRead(A1);
delay(1000);
Serial. println(a);
}