Skip to content

Serial Plotter Plotting Bug #9946 #9953

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Changed SerialPlotter.java to contain <CLEAR> command
  • Loading branch information
Nikola committed Mar 28, 2020
commit ee38775b1646c717f05cfbe99a25860c5e08687c
2 changes: 1 addition & 1 deletion app/src/processing/app/SerialPlotter.java
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ public void message(final String s) {
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
}
Expand Down