teleplot icon indicating copy to clipboard operation
teleplot copied to clipboard

Reading data but not plotting

Open thierri opened this issue 1 month ago • 1 comments

Image

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!

thierri avatar Nov 23 '25 14:11 thierri

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

nesnes avatar Nov 30 '25 20:11 nesnes

Works perfectly! Thanks!

thierri avatar Nov 30 '25 23:11 thierri