When to measure ground. NI-DAQmx subtracts the measured ground voltage from every sample. Set to None to reset.
(self)
| 1735 | @Feat(values={'none': Constants.Val_None, 'once': Constants.Val_Once, |
| 1736 | 'every_sample': Constants.Val_EverySample}) |
| 1737 | def auto_zero_mode(self): |
| 1738 | """When to measure ground. NI-DAQmx subtracts the |
| 1739 | measured ground voltage from every sample. |
| 1740 | |
| 1741 | Set to None to reset. |
| 1742 | """ |
| 1743 | fun = self.__get_fun('Get{}AutoZeroMode') |
| 1744 | err, value = fun(RetValue('i32')) |
| 1745 | return value |
| 1746 | |
| 1747 | @auto_zero_mode.setter |
| 1748 | def auto_zero_mode(self, value): |