Version of installed NI-DAQ library.
(self)
| 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. |