How do you plan to solve it?
/*Paste your code here*/ #define potpin A0 void setup() { Serial.begin(9600); } void loop() { int potval = analogRead(potpin); Serial.println(potval); delay(50); }
Add video of output (know more)
Add a photo of your hardware showing the output.
Submit Your Solution