Serial Plotter is not working!

Good evening, does anyone have an idea why when I open the serial plotter it doesn't show anything, I mention that I am going through a lesson from the student kit, I would appreciate it very much if someone could help me with this or give me some advice, Thank you!

Can you please post the sketch.

Try calling this function from loop()

void serialPlotter() {
  int Data1 = analogRead(A0); // if not connected or tied, random
  int Data2 = 0; // holds low point of plotter 
  int Data3 = 1023; // holds high point of plotter

  Serial.print("Trace1:");
  Serial.print(Data1);
  Serial.print(",");
  Serial.print("Trace2:");
  Serial.println(Data2);
  Serial.print(",");
  Serial.print("Trace3:");
  Serial.println(Data3);
}

Don't post screenshots of code. Please read How to get the best out of this forum and learn to post code properly; it will look like the pist by @xfpd .

1 Like

I'm working with an Arduino R3. The idea is that it doesn't show me any information at all in the serial plotter, but I don't know if I omitted to add an instruction or if I didn't install a drive, this is the only information I would like to find out, I hope I have clarified the situation, I apologize if I did something wrong or if I disturbed someone, I would appreciate it very much if someone could help me, thank you for a possible answer!

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.