01-20-2015 05:26 AM
I want to read data using RXD pin of Arduino uno and want to show this into LabVIEW.I am not finding any VI in LIFA toolkit whcih can read data from RXD pin of arduino..
Note==Data coming to RXD pin is comming from TXD pin of other microcontroller (I cant use ISP).Data which is coming like 500 /n 523 /n 100/n 1/n
01-20-2015 03:58 PM
LIFA uses digital pins 0 and 1 on an Arduino Uno. You can not connect other signals to digital pins 0 and 1.
However, you could use other digital pins for your UART signals. For more information see:
<http://www.arduino.cc/en/Reference/SoftwareSerial>
Or if you are not using stepper motors you could use an Arduino Leonardo.
hrh212