LabView Interface
maad
Posts: 28
I'm a newbi with LabView, but I'm trying to interface it with my basic stamp. Can someone direct me to a good tutorial on how to achieve this?
Regards...
Regards...
Comments
From the STAMP's point of view
SERIN = waiting for data from LabView
SEROUT = sending data to LabView
You'll need to write logic that tells the STAMP what to do with the data. Same goes for LabView, you need to write logic and handle serial I/O.
From LabVIEW's point of view, utilize the VISA functions to configure a serial connection, read/write, close, etc. Review the myriad example code snippets installed with LabVIEW (look for Find Examples in the pull-down menus). Another good source is the "Support" and/or "NI Developer Zone" tabs at www.ni.com. Here's a link to an easy-to-understand serial example: ftp://ftp.ni.com/pub/devzone/epd/basic_serial_write_and_read.vi . Once you get the hang of it, explore the many available property nodes (optional) to fine tune what you're trying to do.
:thumb: