Hi,
i have set up my pycom pysense board and i am publishing an Event to Wia with event name "SensorData" and with 3 data names and values.
In debugger on Wia i do get an event with name SensorData and with all the data:
},
"tag": null,
"name": "SensorData",
"data": [
"temperature",
23,
"humidity",
75,
"pressure",
101
],
"file": null,
"timestamp": 1588074041389,
"receivedTimestamp": 1588074041389
}
Now, the problem is that I want to create 3 separate Line Chart Widgets on my dashboard. During creating widget, it only asks for the name of an event where to get data from, but i can't choose which part of data to use for particular chart.
Does anyone know how to do this?
I do not want to publish 3 separate events, each with it's own name and just one data value.
Thank you