Hi fellows,
I´ve been working on a project using Blynk and IoT cloud from Arduino. I use Blynk to set and update some variables of my project and want to use IOT cloud to display values using gauges graphs and some values boxes (I display that data in the same way on Blynk using its own widgets). As you probably already know, you must set de range (min and max) values of the gauge widget directly from the Dashboard of the IoT cloud editor, but I was wondering if there is any way to do it from code; in that way, my graphs range are always gonna be updated, and there is no necessity of setting them every time that the range change (project range change frequently so my graphs range should do it too).
I do not have that issue with my Blynk widgets due that there is a way to link the graph range to a variable from the code:
Blynk.setProperty(V1, "max", X);
X is the max value set from my code, and it updates immediately as changes are introduced from my Blynk interface.
Is there any way to do the same with IoT cloud widgets?