LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

splitting the income data from Arduino in labview


@0636079234 wrote:
Please I need the lm35 heat sensor on labview and  arduino with code

Please create a new thread for this new topic, and be more specific about what your question is.

0 Kudos
Message 11 of 14
(338 Views)

@arteitle wrote:

@0636079234 wrote:
Please I need the lm35 heat sensor on labview and  arduino with code

Please create a new thread for this new topic, and be more specific about what your question is.


... and don't place plain text into code tags.

0 Kudos
Message 12 of 14
(335 Views)

How can I start communication with HC-SR04 ultrasonic sensor with Arduino on LabVIEW(visa).

I need an example with the programming code
0 Kudos
Message 13 of 14
(321 Views)

How are you sending the data from the Arduino to LabVIEW?

You seem to have 16 different pressure points (4x4) + a temperature.

If you send 1 1D array of 17 data elements, then you can split it down into your 4x4 and your 1

What you are currently doing is processing 4 data elements every loop (and 17 / 4 =! integer number), so you either need to send 4 temp readings.... ; process the whole data set in 1 go or handle the temp read back better.

 

You should probably setup the termination char on your serial port and read bytes at port instead of a byte count too. (this may be your main issue, if you are reading too fast).

 

James

CLD; LabVIEW since 8.0, Currently have LabVIEW 2015 SP1, 2018SP1 & 2020 installed
0 Kudos
Message 14 of 14
(317 Views)