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

Method range_low

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

The lower limit of the input range of the device. This value is in the native units of the device. On E Series devices, for example, the native units is volts. Set to None to reset.

(self)

Source from the content-addressed store, hash-verified

1660
1661 @Feat()
1662 def range_low(self):
1663 """The lower limit of the input range of the
1664 device. This value is in the native units of the device. On E
1665 Series devices, for example, the native units is volts.
1666
1667 Set to None to reset.
1668 """
1669 fun = self.__get_fun('Get{}RngLow')
1670 err, value = fun(RetValue('f64'))
1671 return value
1672
1673 @range_low.setter
1674 def range_low(self, value):

Callers

nothing calls this directly

Calls 2

RetValueClass · 0.90
__get_funMethod · 0.45

Tested by

no test coverage detected