1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-02-26 20:54:22 +01:00

Changed SerialPlotter.java to contain <CLEAR> command

This commit is contained in:
Nikola 2020-03-28 16:49:28 +02:00
parent 84a75d8a5b
commit ee38775b16

View File

@ -406,7 +406,7 @@ public class SerialPlotter extends AbstractMonitor {
continue;
}
if(line.equals("<CLEAR>"){
if(line.equals("<CLEAR>")){
graphs.clear();//clear the graphs points in the array
xCount = 0;//reset the count of data point
}