how to write a code that prints the value of the analogue conversion from the variable resistor to the Serial the monitor
void setup(){
Serial.begin(9600);
}
void loop(){
Serial.print (analogRead(A0));
}
how to write a code that prints the value of the analogue conversion from the variable resistor to the Serial the monitor
void setup(){
Serial.begin(9600);
}
void loop(){
Serial.print (analogRead(A0));
}