Can we change zoom/scaling of serial plotter?If yes,how?

How we can zoom in or zoom out of serial plotter(zooming into x axis and/or y axis)

I have read the documentation on above link,but no information regarding scaling/zooming etc is there

My sample code:

void setup() {
  Serial.begin(1200);  // initialize serial communication at 1200 bits per second
}

void loop() {
  int value = random(0, 1023);  // generate a random value between 0 and 1023
  Serial.println(value);  // send the value to the serial port
  delay(100);  // wait for 100 milliseconds before sending the next value
}

Snap of my serial plotter:

the plotter in Arduino IDE is autoscaled, it allows a common display of different set of values but it is not dedicated to signal processing.

I personnaly use Putty (a free serail monitor) when needed, to export my values as numerical values, export it (from putty) in CSV, then work on it with a spreadsheet.

I hope some others members may have proposal for displaying soft that fall better into your needs.

follow the links from here for a work around until a solution emerges in a new release: Arduino 2.0 Serial Plotter issue

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