void setup() {
// put your setup code here, to run once:
pinMode (A7, INPUT);
}
void loop() {
// put your main code here, to run repeatedly:
int val = analogRead(A7);
int value = val * 10;
Serial.print(value);
delay(500);
}
void setup() {
// put your setup code here, to run once:
pinMode (A7, INPUT);
}
void loop() {
// put your main code here, to run repeatedly:
int val = analogRead(A7);
int value = val * 10;
Serial.print(value);
delay(500);
}