05-15-2020 03:29 PM
It's been a few years since I last used LabVIEW, so I am a little rusty. I am attempting to fix and update some old code for DAQ of up to 15 different sensors. I need to get a graph of some of those sensors' post processed data to show up both in a simplified live data VI that shows only enough for us to know we are taking good data and in the main VI which is where we input the settings for the DAQ. What is the most reasonable method for transferring live graph data from one VI to another?
05-15-2020 03:47 PM
Queue - if you need a lossless data stream
Notifier - if data can be lossy
There are also different flavors of Channel Wires you could use -- the visual syntax looks different but the behavior can be the same.
-Kevin P