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