Correction
SCPI Commands :
[SOURce<HW>]:CORRection:VALue
[SOURce<HW>]:CORRection:[STATe]
- class CorrectionCls[source]
Correction commands group definition. 68 total commands, 4 Subgroups, 2 group commands
- get_state() bool [source]
# SCPI: [SOURce<HW>]:CORRection:[STATe] value: bool = driver.source.correction.get_state()
Activates user correction with the currently selected table.
- return
state: 1| ON| 0| OFF
- get_value() float [source]
# SCPI: [SOURce<HW>]:CORRection:VALue value: float = driver.source.correction.get_value()
Queries the current value for user correction.
- return
value: float Range: -100 to 100
- set_state(state: bool) None [source]
# SCPI: [SOURce<HW>]:CORRection:[STATe] driver.source.correction.set_state(state = False)
Activates user correction with the currently selected table.
- param state
1| ON| 0| OFF
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.source.correction.clone()
Subgroups