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

Method auto_zero_mode

lantz/drivers/ni/daqmx/base.py:1737–1745  ·  view source on GitHub ↗

When to measure ground. NI-DAQmx subtracts the measured ground voltage from every sample. Set to None to reset.

(self)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls 2

RetValueClass · 0.90
__get_funMethod · 0.45

Tested by

no test coverage detected