Skip to content
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

New Feature: overlap plots from different channels. #57

Open
ubaldot opened this issue Jan 2, 2024 · 0 comments
Open

New Feature: overlap plots from different channels. #57

ubaldot opened this issue Jan 2, 2024 · 0 comments

Comments

@ubaldot
Copy link

ubaldot commented Jan 2, 2024

Say that from an Arduino board I am sending something like this (comma separated values):

    int sensorValue = analogRead(A0);
    
    // Send over serial
    Serial.print(sensorValue);
    Serial.print(",");
    Serial.print(sensorValue/2);
    Serial.print(",");
    Serial.print(sensorValue/4);
    Serial.print("\n\r");

I can plot the data on 3 different graphs (one per channel, provided that I selected 3 channels from the DataFormat tab). Fine.

It would be nice to be able to plot sensorValue and sensorValue/2 on the first graph and sensorValue/4 on the second graph. i.e. to select what channel shall be plot on which graph.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant