select
¶
The select commands module.
These commands are used in the following models: DPO2K, DPO2KB, MSO2K, MSO2KB
THIS FILE IS AUTO-GENERATED, IT SHOULD NOT BE MANUALLY MODIFIED.
Please report an issue if one is found.
Commands and Queries
- SELect {ON|OFF}
- SELect:BUS<x> {ON|OFF|<NR1>}
- SELect:BUS<x>?
- SELect:CH<x> {ON|OFF|<NR1>}
- SELect:CH<x>?
- SELect:CONTROl {CH<x>|MATH|BUS<x>}
- SELect:CONTROl?
- SELect:D<x> {ON|OFF|<NR1>}
- SELect:D<x>?
- SELect:MATH1 {ON|OFF|<NR1>}
- SELect:MATH1?
- SELect:REF<x> {ON|OFF|<NR1>}
- SELect:REF<x>?
Select
¶
Bases: SCPICmdWrite, SCPICmdRead
The SELect command.
Description
- Sets or returns the selected waveform display (controlled by the front-panel) on or off.
Usage
- Using the
.write(value)method will send theSELect valuecommand.
SCPI Syntax
- SELect {ON|OFF}
Info
ONturns the selected waveform display on.OFFturns the selected waveform display off.
Properties
.bus: TheSELect:BUS<x>command..ch: TheSELect:CH<x>command..control: TheSELect:CONTROlcommand..d: TheSELect:D<x>command..math1: TheSELect:MATH1command..ref: TheSELect:REF<x>command.
bus
property
¶
bus: dict[int, SelectBusItem]
Return the SELect:BUS<x> command.
Description
- This command turns on and off the display of the waveform for
, where x is the bus number. The query returns whether the channel is on or off but does not indicate whether it is the selected waveform.
Usage
- Using the
.query()method will send theSELect:BUS<x>?query. - Using the
.verify(value)method will send theSELect:BUS<x>?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theSELect:BUS<x> valuecommand.
SCPI Syntax
- SELect:BUS<x> {ON|OFF|<NR1>}
- SELect:BUS<x>?
ch
property
¶
ch: dict[int, SelectChannel]
Return the SELect:CH<x> command.
Description
- This command sets or queries the displayed state of the specified channel waveform. The x can be channel 1 through 4.
Usage
- Using the
.query()method will send theSELect:CH<x>?query. - Using the
.verify(value)method will send theSELect:CH<x>?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theSELect:CH<x> valuecommand.
SCPI Syntax
- SELect:CH<x> {ON|OFF|<NR1>}
- SELect:CH<x>?
Info
<NR1> = 0turns off the display of the specified channel waveform; any other value turns on the display of the specified waveform.OFFturns off the display of the indicated channel waveform.ONdisplays the indicated channel waveform.
control
property
¶
control: SelectControl
Return the SELect:CONTROl command.
Description
- Sets or returns the waveform that is the recipient of future channel-related commands,
for example, the cursor commands. The command form also performs the equivalent of a
SELECT:CHX ONcommand, as well as the Math, Reference, and Bus variations of that command.
Usage
- Using the
.query()method will send theSELect:CONTROl?query. - Using the
.verify(value)method will send theSELect:CONTROl?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theSELect:CONTROl valuecommand.
SCPI Syntax
- SELect:CONTROl {CH<x>|MATH|BUS<x>}
- SELect:CONTROl?
Info
CH<x>specifies a channel waveform as the waveform affected by the front-panel controls.is the channel number. MATHspecifies the math waveform as the waveform that is affected by the front-panel controls.BUS<x>specifies a bus waveform as the waveform affected by the front-panel controls.specifies the bus number.
d
property
¶
d: dict[int, SelectDigitalBit]
Return the SELect:D<x> command.
Description
- Turns on the display of the digital channel
and resets the acquisition. is the channel number, which can be 0-15. The query returns whether the channel is on or off but does not indicate whether it is the selected waveform.
Usage
- Using the
.query()method will send theSELect:D<x>?query. - Using the
.verify(value)method will send theSELect:D<x>?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theSELect:D<x> valuecommand.
SCPI Syntax
- SELect:D<x> {ON|OFF|<NR1>}
- SELect:D<x>?
Info
ONturns on the display of the specified waveform. This waveform also becomes the selected waveform.OFFturns off the display of the specified waveform.<NR1>= 0 turns off the display of the specified waveform; any other value turns on the display of the specified waveform.
math1
property
¶
math1: SelectMath1
Return the SELect:MATH1 command.
Description
- Turns on and off the display of the math waveform. The query returns whether the math waveform is on or off but does not indicate whether it is the selected waveform.
Usage
- Using the
.query()method will send theSELect:MATH1?query. - Using the
.verify(value)method will send theSELect:MATH1?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theSELect:MATH1 valuecommand.
SCPI Syntax
- SELect:MATH1 {ON|OFF|<NR1>}
- SELect:MATH1?
Info
ONturns on the display of the specified waveform. This waveform also becomes the selected waveform.OFFturns off the display of the specified waveform.<NR1>= 0 turns off the display of the specified waveform; any other value turns on the display of the specified waveform.
ref
property
¶
ref: dict[int, SelectRefItem]
Return the SELect:REF<x> command.
Description
- Turns on and off the display of the reference waveform
. The variable represents the reference channel number, which can be 1-4. The query returns whether the channel is on or off.
Usage
- Using the
.query()method will send theSELect:REF<x>?query. - Using the
.verify(value)method will send theSELect:REF<x>?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theSELect:REF<x> valuecommand.
SCPI Syntax
- SELect:REF<x> {ON|OFF|<NR1>}
- SELect:REF<x>?
Info
ONturns on the display of the specified waveform. This waveform also becomes the selected waveform.OFFturns off the display of the specified waveform.<NR1>= 0 turns off the display of the specified waveform; any other value turns on the display of the specified waveform.
SelectBusItem
¶
Bases: ValidatedDynamicNumberCmd, SCPICmdWrite, SCPICmdRead
The SELect:BUS<x> command.
Description
- This command turns on and off the display of the waveform for
, where x is the bus number. The query returns whether the channel is on or off but does not indicate whether it is the selected waveform.
Usage
- Using the
.query()method will send theSELect:BUS<x>?query. - Using the
.verify(value)method will send theSELect:BUS<x>?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theSELect:BUS<x> valuecommand.
SCPI Syntax
- SELect:BUS<x> {ON|OFF|<NR1>}
- SELect:BUS<x>?
SelectChannel
¶
Bases: ValidatedChannel, SCPICmdWrite, SCPICmdRead
The SELect:CH<x> command.
Description
- This command sets or queries the displayed state of the specified channel waveform. The x can be channel 1 through 4.
Usage
- Using the
.query()method will send theSELect:CH<x>?query. - Using the
.verify(value)method will send theSELect:CH<x>?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theSELect:CH<x> valuecommand.
SCPI Syntax
- SELect:CH<x> {ON|OFF|<NR1>}
- SELect:CH<x>?
Info
<NR1> = 0turns off the display of the specified channel waveform; any other value turns on the display of the specified waveform.OFFturns off the display of the indicated channel waveform.ONdisplays the indicated channel waveform.
SelectControl
¶
Bases: SCPICmdWrite, SCPICmdRead
The SELect:CONTROl command.
Description
- Sets or returns the waveform that is the recipient of future channel-related commands, for
example, the cursor commands. The command form also performs the equivalent of a
SELECT:CHX ONcommand, as well as the Math, Reference, and Bus variations of that command.
Usage
- Using the
.query()method will send theSELect:CONTROl?query. - Using the
.verify(value)method will send theSELect:CONTROl?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theSELect:CONTROl valuecommand.
SCPI Syntax
- SELect:CONTROl {CH<x>|MATH|BUS<x>}
- SELect:CONTROl?
Info
CH<x>specifies a channel waveform as the waveform affected by the front-panel controls.is the channel number. MATHspecifies the math waveform as the waveform that is affected by the front-panel controls.BUS<x>specifies a bus waveform as the waveform affected by the front-panel controls.specifies the bus number.
SelectDigitalBit
¶
Bases: ValidatedDigitalBit, SCPICmdWrite, SCPICmdRead
The SELect:D<x> command.
Description
- Turns on the display of the digital channel
and resets the acquisition. is the channel number, which can be 0-15. The query returns whether the channel is on or off but does not indicate whether it is the selected waveform.
Usage
- Using the
.query()method will send theSELect:D<x>?query. - Using the
.verify(value)method will send theSELect:D<x>?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theSELect:D<x> valuecommand.
SCPI Syntax
- SELect:D<x> {ON|OFF|<NR1>}
- SELect:D<x>?
Info
ONturns on the display of the specified waveform. This waveform also becomes the selected waveform.OFFturns off the display of the specified waveform.<NR1>= 0 turns off the display of the specified waveform; any other value turns on the display of the specified waveform.
SelectMath1
¶
Bases: SCPICmdWrite, SCPICmdRead
The SELect:MATH1 command.
Description
- Turns on and off the display of the math waveform. The query returns whether the math waveform is on or off but does not indicate whether it is the selected waveform.
Usage
- Using the
.query()method will send theSELect:MATH1?query. - Using the
.verify(value)method will send theSELect:MATH1?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theSELect:MATH1 valuecommand.
SCPI Syntax
- SELect:MATH1 {ON|OFF|<NR1>}
- SELect:MATH1?
Info
ONturns on the display of the specified waveform. This waveform also becomes the selected waveform.OFFturns off the display of the specified waveform.<NR1>= 0 turns off the display of the specified waveform; any other value turns on the display of the specified waveform.
SelectRefItem
¶
Bases: ValidatedDynamicNumberCmd, SCPICmdWrite, SCPICmdRead
The SELect:REF<x> command.
Description
- Turns on and off the display of the reference waveform
. The variable represents the reference channel number, which can be 1-4. The query returns whether the channel is on or off.
Usage
- Using the
.query()method will send theSELect:REF<x>?query. - Using the
.verify(value)method will send theSELect:REF<x>?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theSELect:REF<x> valuecommand.
SCPI Syntax
- SELect:REF<x> {ON|OFF|<NR1>}
- SELect:REF<x>?
Info
ONturns on the display of the specified waveform. This waveform also becomes the selected waveform.OFFturns off the display of the specified waveform.<NR1>= 0 turns off the display of the specified waveform; any other value turns on the display of the specified waveform.