DonRes
SCPI Commands :
POWer:DONRes:AUTO
POWer:DONRes:AVG
- Commands in total: 7Subgroups: 4Direct child commands: 2
- get_auto() AutoScale[source]
# POWer:DONRes:AUTO value: enums.AutoScale = driver.power.donRes.get_auto()
Selects the scaling for the display of the results.
- Returns:
auto_scale: AUTO | MANUAL
- get_avg() bool[source]
# POWer:DONRes:AVG value: bool = driver.power.donRes.get_avg()
Enables/disables averaging.
- Returns:
average: OFF | ON
- set_auto(auto_scale: AutoScale) None[source]
# POWer:DONRes:AUTO driver.power.donRes.set_auto(auto_scale = enums.AutoScale.AUTO)
Selects the scaling for the display of the results.
- Parameters:
auto_scale – AUTO | MANUAL
- set_avg(average: bool) None[source]
# POWer:DONRes:AVG driver.power.donRes.set_avg(average = False)
Enables/disables averaging.
- Parameters:
average – OFF | ON
Cloning the Group
# Create a copy of the original group, that exists independently
donRes_copy = driver.power.donRes.clone()
Subgroups