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