03-01-2016 02:17 PM
Is there a way to pull the PXI chassis information through a .NET API? I have a PXIe-1085 attached to my PC through a PXIe-8381, and I'ld like to be able to pull information like firmware version, serial number, power voltages, temperatures, etc, from my .NET application.
I did find the MoldularInstrumentsSystem class in the NationalInstruments.SystemServices.DeviceServices namesapce, but that appears to only have information on the individual PXI cards, not the PXI chassis as a whole.
Solved! Go to Solution.
03-02-2016 01:12 PM
Hi CurtisHx,
It looks like the NI System Configuration Manager API is what you need! You should be able to access information about your chassis via the API. Here's some more information on how to use it:
https://decibel.ni.com/content/docs/DOC-13216
http://zone.ni.com/reference/en-XX/help/373107J-01/nisyscfg/introduction
03-03-2016 07:44 AM
That looks like what I was looking for. Thanks.