Reading data but not plotting
Hello! I think I am doing something wrong. The data comming from serial displays on the screen and it look like it is in the correct format. But no plotting at all...
This is the printing line of the code:
/* Print out the values */ Serial.print("AccelX:"); Serial.println(a.acceleration.x);
I am using ESP32 and platformio extension. Thank you!
Hi, for compatibility reasons, data sent over a serial port should be prefixed by a >.
This ensure that other messages are not miss-interpreted as telemetry.
Check the Arduino example at the top of this page: https://marketplace.visualstudio.com/items?itemName=alexnesnes.teleplot
Works perfectly! Thanks!