analogpin=A0;
int v2;
void setup() {
pinMode(analogpin, INPUT);
Serial.begin(9600);
// put your setup code here, to run once:
}
void loop() {
v2= analogRead(analogpin);
// put your main code here, to run repeatedly:
}
analogpin=A0;
int v2;
void setup() {
pinMode(analogpin, INPUT);
Serial.begin(9600);
// put your setup code here, to run once:
}
void loop() {
v2= analogRead(analogpin);
// put your main code here, to run repeatedly:
}