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

Multiplot examples #4188

Closed
pierrotm777 opened this issue Nov 19, 2015 · 2 comments
Closed

Multiplot examples #4188

pierrotm777 opened this issue Nov 19, 2015 · 2 comments
Assignees
Labels
Component: Documentation Related to Arduino's documentation content feature request A request to make an enhancement (not a bug fix) SerialPlotter Tools > Serial Plotter Type: Duplicate Another item already exists for this topic
Milestone

Comments

@pierrotm777
Copy link

Where can i find a multiplot example ?
Is it possible to have different colors for each plot ?

@agdl
Copy link
Member

agdl commented Nov 19, 2015

You have to simply write in the code something like

void setup() {
  // put your setup code here, to run once:
  Serial.begin(115200);
}

void loop() {
  // put your main code here, to run repeatedly:
  for (int i = 0; i < 100; i++)
  {
    Serial.print(i);
    Serial.print("\t");
    Serial.println(2 * i)
  }
}

colours are automatically assigned

@ffissore
Copy link
Contributor

indeed. or print sin and cos with a final println

@ffissore ffissore added the Component: IDE Serial monitor Tools > Serial Monitor label Nov 19, 2015
@ffissore ffissore added this to the Release 1.6.7 milestone Nov 19, 2015
@ffissore ffissore assigned ffissore and agdl and unassigned ffissore Nov 19, 2015
@per1234 per1234 added Component: Documentation Related to Arduino's documentation content feature request A request to make an enhancement (not a bug fix) SerialPlotter Tools > Serial Plotter Type: Duplicate Another item already exists for this topic and removed Component: IDE Serial monitor Tools > Serial Monitor labels Oct 6, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Component: Documentation Related to Arduino's documentation content feature request A request to make an enhancement (not a bug fix) SerialPlotter Tools > Serial Plotter Type: Duplicate Another item already exists for this topic
Projects
None yet
Development

No branches or pull requests

4 participants