Skip to content

Serial plotter not plotting #33

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
3 tasks done
AndKe opened this issue Aug 31, 2023 · 2 comments
Closed
3 tasks done

Serial plotter not plotting #33

AndKe opened this issue Aug 31, 2023 · 2 comments
Assignees
Labels
conclusion: invalid Issue/PR not valid topic: code Related to content of the project itself type: imperfection Perceived defect in any part of project

Comments

@AndKe
Copy link

AndKe commented Aug 31, 2023

Describe the problem

lines like these are not plotted:

Temperature: 23.64, Humidity: 43.89
Temperature: 23.64, Humidity: 43.91
Temperature: 23.64, Humidity: 43.92

Screenshot from 2023-08-31 10-25-06

To reproduce

push strings above.

Expected behavior

plot, accoring to https://docs.arduino.cc/software/ide-v2/tutorials/ide-v2-serial-plotter this should work?

Arduino IDE version

2.2.0

Operating system

Linux

Operating system version

Ubuntu 23.04

Additional context

No response

Issue checklist

  • I searched for previous reports in the issue tracker
  • I verified the problem still occurs when using the latest nightly build
  • My report contains all necessary details
@AndKe AndKe added the type: imperfection Perceived defect in any part of project label Aug 31, 2023
@per1234 per1234 self-assigned this Aug 31, 2023
@per1234 per1234 transferred this issue from arduino/arduino-ide Aug 31, 2023
@per1234 per1234 added the topic: code Related to content of the project itself label Aug 31, 2023
@per1234
Copy link
Contributor

per1234 commented Aug 31, 2023

Hi @AndKe. Since the space is one of the data delimiters recognized by the Serial Plotter, it is mandatory that you not insert a space between the colon and the value.

So you must change this line of your sketch:

Serial.print("Temperature: ");

to this:

Serial.print("Temperature:");

and change this line of your sketch:

Serial.print(", Humidity: ");

to this:

Serial.print(", Humidity:");

If you check the tutorial closely, you'll see the code there does meet this requirement.

@per1234 per1234 closed this as not planned Won't fix, can't repro, duplicate, stale Aug 31, 2023
@per1234 per1234 added the conclusion: invalid Issue/PR not valid label Aug 31, 2023
@AndKe
Copy link
Author

AndKe commented Sep 1, 2023

@per1234 thank you. my bad, maybe a short example/requirement text box/help box would be nice to have in the plotter window.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
conclusion: invalid Issue/PR not valid topic: code Related to content of the project itself type: imperfection Perceived defect in any part of project
Projects
None yet
Development

No branches or pull requests

2 participants