MCPcopy Create free account
hub / github.com/LabPy/lantz / version

Method version

lantz/drivers/legacy/ni/daqmx/base.py:153–158  ·  view source on GitHub ↗

Version of installed NI-DAQ library.

(self)

Source from the content-addressed store, hash-verified

151
152 @Feat(read_once=True)
153 def version(self):
154 """Version of installed NI-DAQ library.
155 """
156 err, major = self.lib.GetSysNIDAQMajorVersion(RetValue('u32'))
157 err, minor = self.lib.GetSysNIDAQMinorVersion(RetValue('u32'))
158 return major, minor
159
160 def _device_names(self):
161 """Return a tuple containing the names of all global devices installed in the system.

Callers

nothing calls this directly

Calls 1

RetValueClass · 0.90

Tested by

no test coverage detected