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:
