LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

using a .dll to control a mcs device

Solved!
Go to solution

Thanks again for your help tyk 007

 

i contacted multichannel systems today and they knew what caused the problem. so i can now use the tcx controller and have no more issues.

 

dears michael

0 Kudos
Message 11 of 13
(367 Views)

Glad you have solved your problem. If you get a chance feel free to post the solution here in case someone else encounters the same problem.

0 Kudos
Message 12 of 13
(360 Views)
Solution
Accepted by topic author octaris

The support of Multichannel systems provided me an example how to do it in c# programming and its the same way doable with the invoker nodes in labview:

 

 CMcsUsbListNet usbDeviceList = new CMcsUsbListNet();
            usbDeviceList.Initialize(DeviceEnumNet.MCS_TCX_DEVICE);
            CMcsUsbListEntryNet entry = usbDeviceList.GetUsbListEntry(0);

 

using the .net dll provided from the mcs webside all those functions are imported to labview.

and using the commands above the connection to the tc01 thermocontroller works.

0 Kudos
Message 13 of 13
(356 Views)