29. ADC Serial plotter

Back To All Submissions
Previous Submission
Next Submission

Solving Approach:

How do you plan to solve it?

 

 

Code

const int analogPin = A0;

void setup() 
{
  Serial.begin(9600);
}

void loop() 
{

  int adcValue = analogRead(analogPin);
  

  Serial.println(adcValue);
  
  delay(50); 
}



 

Output

Video

Add video of output (know more)

 

 

 

 

 

Photo of Output

Add a photo of your hardware showing the output.

 

 

 

 

 

Was this helpful?
Upvote
Downvote