Range

SCPI Commands

FUNCtion:IMPedance:RANGe:AUTO
FUNCtion:IMPedance:RANGe:HOLD
FUNCtion:IMPedance:RANGe:VALue
class RangeCls[source]

Range commands group definition. 3 total commands, 0 Subgroups, 3 group commands

get_auto() bool[source]
# SCPI: FUNCtion:IMPedance:RANGe:AUTO
value: bool = driver.function.impedance.range.get_auto()

Activates automatic impedance range selection. To set the impedance range manually, use command method RsLcx.Function. Impedance.Range.value.

return:

auto_range: No help available

get_hold() bool[source]
# SCPI: FUNCtion:IMPedance:RANGe:HOLD
value: bool = driver.function.impedance.range.get_hold()

Freezes the set impedance measurement range.

return:

locks_selected_range: No help available

get_value() float[source]
# SCPI: FUNCtion:IMPedance:RANGe[:VALue]
value: float = driver.function.impedance.range.get_value()

Sets the impedance range value. For setting the parameter manually, disable auto selection with method RsLcx.Function. Impedance.Range.auto.

return:

range_py: No help available

set_auto(auto_range: bool) None[source]
# SCPI: FUNCtion:IMPedance:RANGe:AUTO
driver.function.impedance.range.set_auto(auto_range = False)

Activates automatic impedance range selection. To set the impedance range manually, use command method RsLcx.Function. Impedance.Range.value.

param auto_range:

No help available

set_hold(locks_selected_range: bool) None[source]
# SCPI: FUNCtion:IMPedance:RANGe:HOLD
driver.function.impedance.range.set_hold(locks_selected_range = False)

Freezes the set impedance measurement range.

param locks_selected_range:

No help available

set_value(range_py: float) None[source]
# SCPI: FUNCtion:IMPedance:RANGe[:VALue]
driver.function.impedance.range.set_value(range_py = 1.0)

Sets the impedance range value. For setting the parameter manually, disable auto selection with method RsLcx.Function. Impedance.Range.auto.

param range_py:

No help available