-
-
Notifications
You must be signed in to change notification settings - Fork 7k
Add clean button to SerialPlot #7422
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
Conversation
Supports csv style header and colon separated <label>:<value> Two command where added. All command start with # CLEAN -> will clean the scope SIZE:<value> -> set the xaxis size. Right now it is limited to 10-5000.
Hi @chromhelm , |
String label = null; | ||
|
||
// all commands start with # | ||
if(parts[i].startsWith("#") && parts[i].length() > 1) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not a big fan of hardcoded commands but I appreciate the idea.
Probably a standalone commit (like "add CLEAR and SET_SIZE runtime commands to Serial Plotter") could do the trick and make discussion easier
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done in pull request #7461
Hi |
No description provided.