we have a AD-converter (type tlc549cp) .
the code for reading this ADC in Visual Basic.Net is:
private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim i As Integer
i = OPENCOM("COM1,1200,N,8,1")
If i = 0 Then...
With a temperaturesensor (PT100), we get an analoge signal, with an ADC (Analoge- Digital Converter) we converted the analoge signals to digital signals. We read the digital signals with the serial port in the PC. In labVIEW we need to convert these digital signals into numeric values. does...