Arduino Xbee Labview Confusion

Hi
My group and I are currently doing a project which requires the transmission of wireless ECG signal to labview. The components which we decided to use complete the task are:
2 x Xbee (Zigbee S1) modules,
1 x Arduino uno
1 Xbee module attached to the Arduino had been programmed with Arduino. However, due to our lack of understanding of how Arduino functions, we are unsure if the coding for the interface is valid for transmitting the Analog ECG signal wirelessly to the other Xbee module connected (USB cable) to the computer and later displayed onto waveform using labview.

The coding used is as follow:

#include “LabVIEWInterface.h”
int dato =0;
const int analogInPin = A0;
int sensorValue = 0;
void setup()
{
Serial.begin (9600);
}
void loop()
{
sensorValue = analogRead(analogInPin);
Serial.println(sensorValue);
delay(1);
checkForCommand();
{
dato = analogRead(0);
String cadena =“S0>”;
String cadena1 = cadena + dato;
Serial.println (cadena1);
delay (10);

}
if(acqMode==1)
{
sampleContinously();
}
}

Attached were the labview which we have constructed, but we are unclear which works for the coding as stated earlier in the post. We hope to get some enlightenment. Thank you.
Screen Shot 2015-10-27 at 8.48.06 PM.png

Hello,

We suggest that you make a post in official Labview forum on Arduino interface to get a response from experts.

Thanks and Warm Regards