03-24-2006 06:24 PM - edited 03-24-2006 06:24 PM
Message Edited by jclay on 03-24-2006 06:25 PM
03-27-2006 04:15 PM - edited 03-27-2006 04:15 PM
Hello,
Wow, sounds like a pretty advanced high school class!
With regards to your question, the first thing to iron out is exactly how the logging software can transfer data to your computer, then to define exactly what you mean by “in realtime”. There are several possible ways to transfer data from one running program to another. Some of the more popular ways are:
1) File IO – server writes data to a file, client reads data from the same file
2) ActiveX – Microsoft technology that allows sending/receiving data and automating programs
3) DLLs – half-compiled code allows a program to call code created from another development environment. For example, a LabVIEW program can call a DLL built with MSVC++.
3) .NET frameworks – similar to ActiveX in look and feel, but closer to DLLs in functionality.
4) Transfer protocols – hooks up serially to another device, GPIB, Ethernet, USB, or something of this sort. In addition to it just being able to hook up to a computer through these means, the software you write will need to know how to interface with the device and software through these means.
Next, what do you mean realtime? I presume you mean that you just want to read the data from the device continuously and have only a very small delay between each data transfer.
If you can get information on how you can transfer the data, and how quickly you want to transfer the data I might be able to help recommend a way to get the data to LabVIEW.
Good luck-
Message Edited by Travis M. on 03-27-2006 04:16 PM
03-27-2006 04:38 PM
03-27-2006 09:54 PM
03-27-2006 09:57 PM
03-28-2006 10:42 AM - edited 03-28-2006 10:42 AM
Message Edited by tbob on 03-28-2006 09:43 AM