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

Method range_high

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

The upper 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

1639
1640 @Feat()
1641 def range_high(self):
1642 """The upper limit of the input range of the
1643 device. This value is in the native units of the device. On E
1644 Series devices, for example, the native units is volts.
1645
1646 Set to None to reset.
1647 """
1648 fun = self.__get_fun('Get{}RngHigh')
1649 err, value = fun(RetValue('f64'))
1650 return value
1651
1652 @range_high.setter
1653 def range_high(self, value):

Callers

nothing calls this directly

Calls 2

RetValueClass · 0.90
__get_funMethod · 0.45

Tested by

no test coverage detected