07-02-2014 02:38 PM
Thanks,
DailyDose...
It helped me a lot!
07-02-2014 03:02 PM
Hey guys, I have another problem.
Three different kinds of data are been generated and they can be read on Arduino serial monitor. I would like to read the data on LabView interface; but the first data should be read and then it should be shown on Labview interface. Likewise, for the second and third data it should happen the same thing; however, these three kinds of data should be read on different indicators.
I do not know what I should do since the Labview program read everything that is in the Arduino serial monitor and for a specific indicator I suppose to show a specific data from serial monitor.
If you could help me I would be really grateful.
Thanks!
07-02-2014 03:45 PM
What kind of data are you trying to send? String or Values.
07-02-2014 04:16 PM
07-02-2014 06:44 PM
what he says Dennis_Knutson is the most recommended, place a delimiter between each data sent
07-03-2014 09:49 AM
I'm trying to send values. There are three different values that I need to send and I need to show them separated.
07-03-2014 10:12 AM
07-03-2014 12:08 PM - edited 07-03-2014 12:10 PM
dbarbosa@lakehead.ca wrote:
I'm trying to send values. There are three different values that I need to send and I need to show them separated.
Not trying to be rude man, but I feel as though I've already shown/explained how to do this. There's a SubVI in my attachment that, after receiving the bits, splits them into readable data. Like I've said. you need to send the data in the appropriate order and then break it down after receiving and storing. Values = binary. If you're wanting to send a value of 1012 (just a random number for example), you'll need to use the Serial.Write and send the data as separate single bytes. Then you'll need to use that receive and store it appropriately then break it down the same way you received it. It's all in that VI I attached man.
07-03-2014 01:54 PM
haha... that's ok, man!
Thanks a lot.
However, I'm not able to open your SubVI block. Do you break the data inside of this block? Your code appears like that picture I attached here.
Well, I appreciate your attention so far... I really thank you!
07-03-2014 02:03 PM