Hello,
I have a question about Super Chart. I have used the widget in my app for displaying readings from distance sensor. For that i am using a data stream of integer (0-255).
In a ESP32 project i also use a int variable for reading the distance sensor data and publish data to blynk ever 1sec.
Blynk.virtualWrite(V2, avg_distance_cm);
What is causing me problems is that a super chart is plotting a float data. How is this possible when i’m publishing int val to a data stream V2 which is also declared as int? i have a constatnt distance of 32cm for instance, but if i look at history data for last day on the chart it shows data randomly ranging from 32,0 - 32,8.
Thanks for replies and all the help,
MM