I’m working with two devices, and I’m using a map widget to see sensor values, but it only let me see one value when I tap on the location I choose, is there any way to see all data at the same time? and another question, how can I label sensors data on map widget?
thanks
How are you sending the multiple datasets? We need to see code here.
Also, have you looked at the documentation or searched this forum for more information on including your sensor value (hint look for the word “value” and use a variable instead of a string.
Blynk.virtualWrite(V1, pointIndex, lat, lon, "value");
I think:
Blynk.virtualWrite(V1, 1, lat, lon, “value”);
Blynk.virtualWrite(V1, 2, lat, lon, “value”);
I can get two markers on my map