actonevent
¶
The actonevent commands module.
These commands are used in the following models: DPO4K, DPO4KB, MDO3, MDO3K, MDO4K, MDO4KB, MDO4KC, MSO4K, MSO4KB
THIS FILE IS AUTO-GENERATED, IT SHOULD NOT BE MANUALLY MODIFIED.
Please report an issue if one is found.
Commands and Queries
- ACTONEVent:ACTION:AUXOUT:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:AUXOUT:STATE?
- ACTONEVent:ACTION:EMAIL:SETUp:TOADDRess <QString>
- ACTONEVent:ACTION:EMAIL:SETUp:TOADDRess?
- ACTONEVent:ACTION:EMAIL:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:EMAIL:STATE?
- ACTONEVent:ACTION:PRINT:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:PRINT:STATE?
- ACTONEVent:ACTION:SAVEIMAGE:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:SAVEIMAGE:STATE?
- ACTONEVent:ACTION:SAVEWFM:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:SAVEWFM:STATE?
- ACTONEVent:ACTION:SRQ:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:SRQ:STATE?
- ACTONEVent:ACTION:STOPACQ:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:STOPACQ:STATE?
- ACTONEVent:ACTION:VISUAL:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:VISUAL:STATE?
- ACTONEVent:EVENTTYPe <NONe|TRIGger|ACQCOMPLete>
- ACTONEVent:EVENTTYPe?
- ACTONEVent:NUMACQs <NR1>
- ACTONEVent:NUMACQs?
- ACTONEVent:REPEATCount <NR1>
- ACTONEVent:REPEATCount?
Actonevent
¶
Bases: SCPICmdRead
The ACTONEVent command tree.
Usage
- Using the
.query()method will send theACTONEVent?query. - Using the
.verify(value)method will send theACTONEVent?query and raise an AssertionError if the returned value does not matchvalue.
Properties
.action: TheACTONEVent:ACTIONcommand tree..eventtype: TheACTONEVent:EVENTTYPecommand..numacqs: TheACTONEVent:NUMACQscommand..repeatcount: TheACTONEVent:REPEATCountcommand.
action
property
¶
action: ActoneventAction
Return the ACTONEVent:ACTION command tree.
Usage
- Using the
.query()method will send theACTONEVent:ACTION?query. - Using the
.verify(value)method will send theACTONEVent:ACTION?query and raise an AssertionError if the returned value does not matchvalue.
Sub-properties
.auxout: TheACTONEVent:ACTION:AUXOUTcommand tree..email: TheACTONEVent:ACTION:EMAILcommand tree..print: TheACTONEVent:ACTION:PRINTcommand tree..saveimage: TheACTONEVent:ACTION:SAVEIMAGEcommand tree..savewfm: TheACTONEVent:ACTION:SAVEWFMcommand tree..srq: TheACTONEVent:ACTION:SRQcommand tree..stopacq: TheACTONEVent:ACTION:STOPACQcommand tree..visual: TheACTONEVent:ACTION:VISUALcommand tree.
eventtype
property
¶
eventtype: ActoneventEventtype
Return the ACTONEVent:EVENTTYPe command.
Description
- Specifies (or queries) which event to act on (TRIGger, ACQCOMPLete, or NONe) when
using an Act on Event command. The default is NONe. To specify the action to take, use
the
ACTONEVent:ACTIONcommands.
Usage
- Using the
.query()method will send theACTONEVent:EVENTTYPe?query. - Using the
.verify(value)method will send theACTONEVent:EVENTTYPe?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:EVENTTYPe valuecommand.
SCPI Syntax
- ACTONEVent:EVENTTYPe <NONe|TRIGger|ACQCOMPLete>
- ACTONEVent:EVENTTYPe?
Info
NONeno event (this is the default).TRIGgerspecifies to act when a trigger occurs.ACQCOMPLetespecifies to act when acquisition completes.
numacqs
property
¶
numacqs: ActoneventNumacqs
Return the ACTONEVent:NUMACQs command.
Description
- Sets (or queries) the number of acquisitions to complete for the event type ACQCOMPLete. The default is 1 acquisition.
Usage
- Using the
.query()method will send theACTONEVent:NUMACQs?query. - Using the
.verify(value)method will send theACTONEVent:NUMACQs?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:NUMACQs valuecommand.
SCPI Syntax
- ACTONEVent:NUMACQs <NR1>
- ACTONEVent:NUMACQs?
repeatcount
property
¶
repeatcount: ActoneventRepeatcount
Return the ACTONEVent:REPEATCount command.
Description
- Sets or returns the number of events to run.
Usage
- Using the
.query()method will send theACTONEVent:REPEATCount?query. - Using the
.verify(value)method will send theACTONEVent:REPEATCount?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:REPEATCount valuecommand.
SCPI Syntax
- ACTONEVent:REPEATCount <NR1>
- ACTONEVent:REPEATCount?
Info
NR1is an integer that specifies the number of events to run. The default is 1 event and the maximum is 1000000 events. A repeat count greater than 1000000 specifies to run forever. In this case, the action on event can be terminated by setting the state for all actions to OFF. When the repeat count is set to infinite, the query returns 9.9E+37 (IEEE positive infinity).
ActoneventAction
¶
Bases: SCPICmdRead
The ACTONEVent:ACTION command tree.
Usage
- Using the
.query()method will send theACTONEVent:ACTION?query. - Using the
.verify(value)method will send theACTONEVent:ACTION?query and raise an AssertionError if the returned value does not matchvalue.
Properties
.auxout: TheACTONEVent:ACTION:AUXOUTcommand tree..email: TheACTONEVent:ACTION:EMAILcommand tree..print: TheACTONEVent:ACTION:PRINTcommand tree..saveimage: TheACTONEVent:ACTION:SAVEIMAGEcommand tree..savewfm: TheACTONEVent:ACTION:SAVEWFMcommand tree..srq: TheACTONEVent:ACTION:SRQcommand tree..stopacq: TheACTONEVent:ACTION:STOPACQcommand tree..visual: TheACTONEVent:ACTION:VISUALcommand tree.
auxout
property
¶
auxout: ActoneventActionAuxout
Return the ACTONEVent:ACTION:AUXOUT command tree.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:AUXOUT?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:AUXOUT?query and raise an AssertionError if the returned value does not matchvalue.
Sub-properties
.state: TheACTONEVent:ACTION:AUXOUT:STATEcommand.
email
property
¶
email: ActoneventActionEmail
Return the ACTONEVent:ACTION:EMAIL command tree.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:EMAIL?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:EMAIL?query and raise an AssertionError if the returned value does not matchvalue.
Sub-properties
.setup: TheACTONEVent:ACTION:EMAIL:SETUpcommand tree..state: TheACTONEVent:ACTION:EMAIL:STATEcommand.
print
property
¶
print: ActoneventActionPrint
Return the ACTONEVent:ACTION:PRINT command tree.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:PRINT?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:PRINT?query and raise an AssertionError if the returned value does not matchvalue.
Sub-properties
.state: TheACTONEVent:ACTION:PRINT:STATEcommand.
saveimage
property
¶
saveimage: ActoneventActionSaveimage
Return the ACTONEVent:ACTION:SAVEIMAGE command tree.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:SAVEIMAGE?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:SAVEIMAGE?query and raise an AssertionError if the returned value does not matchvalue.
Sub-properties
.state: TheACTONEVent:ACTION:SAVEIMAGE:STATEcommand.
savewfm
property
¶
savewfm: ActoneventActionSavewfm
Return the ACTONEVent:ACTION:SAVEWFM command tree.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:SAVEWFM?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:SAVEWFM?query and raise an AssertionError if the returned value does not matchvalue.
Sub-properties
.state: TheACTONEVent:ACTION:SAVEWFM:STATEcommand.
srq
property
¶
srq: ActoneventActionSrq
Return the ACTONEVent:ACTION:SRQ command tree.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:SRQ?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:SRQ?query and raise an AssertionError if the returned value does not matchvalue.
Sub-properties
.state: TheACTONEVent:ACTION:SRQ:STATEcommand.
stopacq
property
¶
stopacq: ActoneventActionStopacq
Return the ACTONEVent:ACTION:STOPACQ command tree.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:STOPACQ?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:STOPACQ?query and raise an AssertionError if the returned value does not matchvalue.
Sub-properties
.state: TheACTONEVent:ACTION:STOPACQ:STATEcommand.
visual
property
¶
visual: ActoneventActionVisual
Return the ACTONEVent:ACTION:VISUAL command tree.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:VISUAL?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:VISUAL?query and raise an AssertionError if the returned value does not matchvalue.
Sub-properties
.state: TheACTONEVent:ACTION:VISUAL:STATEcommand.
ActoneventActionAuxout
¶
Bases: SCPICmdRead
The ACTONEVent:ACTION:AUXOUT command tree.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:AUXOUT?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:AUXOUT?query and raise an AssertionError if the returned value does not matchvalue.
Properties
.state: TheACTONEVent:ACTION:AUXOUT:STATEcommand.
state
property
¶
state: ActoneventActionAuxoutState
Return the ACTONEVent:ACTION:AUXOUT:STATE command.
Description
- Sends a pulse to the Auxiliary Out port when a specified event occurs, or queries the
state of the ‘pulse to aux out’ action. The default state is 0 (off). To specify an
event, use the command
ACTONEVENT:EVENTTYPE.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:AUXOUT:STATE?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:AUXOUT:STATE?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:ACTION:AUXOUT:STATE valuecommand.
SCPI Syntax
- ACTONEVent:ACTION:AUXOUT:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:AUXOUT:STATE?
Info
1, ONsends a pulse to the Auxiliary Out port when the specified event occurs.0, OFFturns off this action.
ActoneventActionAuxoutState
¶
Bases: SCPICmdWrite, SCPICmdRead
The ACTONEVent:ACTION:AUXOUT:STATE command.
Description
- Sends a pulse to the Auxiliary Out port when a specified event occurs, or queries the
state of the ‘pulse to aux out’ action. The default state is 0 (off). To specify an event,
use the command
ACTONEVENT:EVENTTYPE.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:AUXOUT:STATE?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:AUXOUT:STATE?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:ACTION:AUXOUT:STATE valuecommand.
SCPI Syntax
- ACTONEVent:ACTION:AUXOUT:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:AUXOUT:STATE?
Info
1, ONsends a pulse to the Auxiliary Out port when the specified event occurs.0, OFFturns off this action.
ActoneventActionEmail
¶
Bases: SCPICmdRead
The ACTONEVent:ACTION:EMAIL command tree.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:EMAIL?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:EMAIL?query and raise an AssertionError if the returned value does not matchvalue.
Properties
.setup: TheACTONEVent:ACTION:EMAIL:SETUpcommand tree..state: TheACTONEVent:ACTION:EMAIL:STATEcommand.
setup
property
¶
setup: ActoneventActionEmailSetup
Return the ACTONEVent:ACTION:EMAIL:SETUp command tree.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:EMAIL:SETUp?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:EMAIL:SETUp?query and raise an AssertionError if the returned value does not matchvalue.
Sub-properties
.toaddress: TheACTONEVent:ACTION:EMAIL:SETUp:TOADDResscommand.
state
property
¶
state: ActoneventActionEmailState
Return the ACTONEVent:ACTION:EMAIL:STATE command.
Description
- Sends an email when a specified event occurs, or queries the state of the ‘send email’
action. The default state is 0 (off). To specify an email address for the recipient,
use the command
ACTONEVENT:ACTION:EMAIL:SETUP:TOADDRESS Tospecify an event, use the commandACTONEVENT:EVENTTYPE.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:EMAIL:STATE?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:EMAIL:STATE?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:ACTION:EMAIL:STATE valuecommand.
SCPI Syntax
- ACTONEVent:ACTION:EMAIL:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:EMAIL:STATE?
Info
1, ONsends an email when the specified event occurs.0, OFFturns off this action.
ActoneventActionEmailSetup
¶
Bases: SCPICmdRead
The ACTONEVent:ACTION:EMAIL:SETUp command tree.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:EMAIL:SETUp?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:EMAIL:SETUp?query and raise an AssertionError if the returned value does not matchvalue.
Properties
.toaddress: TheACTONEVent:ACTION:EMAIL:SETUp:TOADDResscommand.
toaddress
property
¶
toaddress: ActoneventActionEmailSetupToaddress
Return the ACTONEVent:ACTION:EMAIL:SETUp:TOADDRess command.
Description
- Sets (or queries) the email address for the recipient when the
ACTONEVENT:ACTION:EMAIL:STATEcommand is used. To set up the email address for the sender, useEMAIL:SETUP:FROMADDRESS.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:EMAIL:SETUp:TOADDRess?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:EMAIL:SETUp:TOADDRess?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:ACTION:EMAIL:SETUp:TOADDRess valuecommand.
SCPI Syntax
- ACTONEVent:ACTION:EMAIL:SETUp:TOADDRess <QString>
- ACTONEVent:ACTION:EMAIL:SETUp:TOADDRess?
ActoneventActionEmailSetupToaddress
¶
Bases: SCPICmdWrite, SCPICmdRead
The ACTONEVent:ACTION:EMAIL:SETUp:TOADDRess command.
Description
- Sets (or queries) the email address for the recipient when the
ACTONEVENT:ACTION:EMAIL:STATEcommand is used. To set up the email address for the sender, useEMAIL:SETUP:FROMADDRESS.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:EMAIL:SETUp:TOADDRess?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:EMAIL:SETUp:TOADDRess?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:ACTION:EMAIL:SETUp:TOADDRess valuecommand.
SCPI Syntax
- ACTONEVent:ACTION:EMAIL:SETUp:TOADDRess <QString>
- ACTONEVent:ACTION:EMAIL:SETUp:TOADDRess?
ActoneventActionEmailState
¶
Bases: SCPICmdWrite, SCPICmdRead
The ACTONEVent:ACTION:EMAIL:STATE command.
Description
- Sends an email when a specified event occurs, or queries the state of the ‘send email’
action. The default state is 0 (off). To specify an email address for the recipient, use
the command
ACTONEVENT:ACTION:EMAIL:SETUP:TOADDRESS Tospecify an event, use the commandACTONEVENT:EVENTTYPE.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:EMAIL:STATE?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:EMAIL:STATE?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:ACTION:EMAIL:STATE valuecommand.
SCPI Syntax
- ACTONEVent:ACTION:EMAIL:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:EMAIL:STATE?
Info
1, ONsends an email when the specified event occurs.0, OFFturns off this action.
ActoneventActionPrint
¶
Bases: SCPICmdRead
The ACTONEVent:ACTION:PRINT command tree.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:PRINT?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:PRINT?query and raise an AssertionError if the returned value does not matchvalue.
Properties
.state: TheACTONEVent:ACTION:PRINT:STATEcommand.
state
property
¶
state: ActoneventActionPrintState
Return the ACTONEVent:ACTION:PRINT:STATE command.
Description
- Sends a screen image to a printer when a specified event occurs, or queries the state
of the ‘send screen image’ action. The default state is 0 (off). To specify an event,
use the command
ACTONEVENT:EVENTTYPE.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:PRINT:STATE?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:PRINT:STATE?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:ACTION:PRINT:STATE valuecommand.
SCPI Syntax
- ACTONEVent:ACTION:PRINT:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:PRINT:STATE?
Info
1, ONsends a screen image to the printer when the specified event occurs.0, OFFturns off this action.
ActoneventActionPrintState
¶
Bases: SCPICmdWrite, SCPICmdRead
The ACTONEVent:ACTION:PRINT:STATE command.
Description
- Sends a screen image to a printer when a specified event occurs, or queries the state of
the ‘send screen image’ action. The default state is 0 (off). To specify an event, use the
command
ACTONEVENT:EVENTTYPE.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:PRINT:STATE?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:PRINT:STATE?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:ACTION:PRINT:STATE valuecommand.
SCPI Syntax
- ACTONEVent:ACTION:PRINT:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:PRINT:STATE?
Info
1, ONsends a screen image to the printer when the specified event occurs.0, OFFturns off this action.
ActoneventActionSaveimage
¶
Bases: SCPICmdRead
The ACTONEVent:ACTION:SAVEIMAGE command tree.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:SAVEIMAGE?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:SAVEIMAGE?query and raise an AssertionError if the returned value does not matchvalue.
Properties
.state: TheACTONEVent:ACTION:SAVEIMAGE:STATEcommand.
state
property
¶
Return the ACTONEVent:ACTION:SAVEIMAGE:STATE command.
Description
- Saves a screen image to file when a specified event occurs, or queries the state of
the ‘save screen image to a file’ action. The default state is 0 (off). To specify an
event, use the command
ACTONEVENT:EVENTTYPE.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:SAVEIMAGE:STATE?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:SAVEIMAGE:STATE?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:ACTION:SAVEIMAGE:STATE valuecommand.
SCPI Syntax
- ACTONEVent:ACTION:SAVEIMAGE:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:SAVEIMAGE:STATE?
Info
1, ONsaves a screen image to a file when the specified event occurs.0, OFFturns off this action.
ActoneventActionSaveimageState
¶
Bases: SCPICmdWrite, SCPICmdRead
The ACTONEVent:ACTION:SAVEIMAGE:STATE command.
Description
- Saves a screen image to file when a specified event occurs, or queries the state of the
‘save screen image to a file’ action. The default state is 0 (off). To specify an event,
use the command
ACTONEVENT:EVENTTYPE.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:SAVEIMAGE:STATE?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:SAVEIMAGE:STATE?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:ACTION:SAVEIMAGE:STATE valuecommand.
SCPI Syntax
- ACTONEVent:ACTION:SAVEIMAGE:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:SAVEIMAGE:STATE?
Info
1, ONsaves a screen image to a file when the specified event occurs.0, OFFturns off this action.
ActoneventActionSavewfm
¶
Bases: SCPICmdRead
The ACTONEVent:ACTION:SAVEWFM command tree.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:SAVEWFM?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:SAVEWFM?query and raise an AssertionError if the returned value does not matchvalue.
Properties
.state: TheACTONEVent:ACTION:SAVEWFM:STATEcommand.
state
property
¶
state: ActoneventActionSavewfmState
Return the ACTONEVent:ACTION:SAVEWFM:STATE command.
Description
- Saves the currently selected waveform data to a file when a specified event occurs, or
queries the state of the ‘save waveform to file’ action. The default state is 0 (off).
To specify an event, use the command
ACTONEVENT:EVENTTYPE.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:SAVEWFM:STATE?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:SAVEWFM:STATE?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:ACTION:SAVEWFM:STATE valuecommand.
SCPI Syntax
- ACTONEVent:ACTION:SAVEWFM:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:SAVEWFM:STATE?
Info
1, ONsaves the waveform to a file when the specified event occurs.0, OFFturns off this action.
ActoneventActionSavewfmState
¶
Bases: SCPICmdWrite, SCPICmdRead
The ACTONEVent:ACTION:SAVEWFM:STATE command.
Description
- Saves the currently selected waveform data to a file when a specified event occurs, or
queries the state of the ‘save waveform to file’ action. The default state is 0 (off). To
specify an event, use the command
ACTONEVENT:EVENTTYPE.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:SAVEWFM:STATE?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:SAVEWFM:STATE?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:ACTION:SAVEWFM:STATE valuecommand.
SCPI Syntax
- ACTONEVent:ACTION:SAVEWFM:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:SAVEWFM:STATE?
Info
1, ONsaves the waveform to a file when the specified event occurs.0, OFFturns off this action.
ActoneventActionSrq
¶
Bases: SCPICmdRead
The ACTONEVent:ACTION:SRQ command tree.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:SRQ?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:SRQ?query and raise an AssertionError if the returned value does not matchvalue.
Properties
.state: TheACTONEVent:ACTION:SRQ:STATEcommand.
state
property
¶
state: ActoneventActionSrqState
Return the ACTONEVent:ACTION:SRQ:STATE command.
Description
- Sets or returns the enabled state of the generate service request (SRQ) action when a
specified event occurs. The default state is 0. When this control is set, the
instrument will set the OPC bit (bit 0) in the SESR (Standard Events Status Register)
when the specified event occurs. In order to generate a service request interrupt
(SRQ), the SRER (Service Request Enable Register), DESER (Device Event Status Enable
Register), and the ESER (Event Status Enable Register) must be set appropriately as
described in the programmer manual Synchronization Methods section. Upon completion of
the mask test, event code 2600 (‘Mask testing complete’) is queued to the event queue.
To specify an event, use the command
ACTONEVENT:EVENTTYPE.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:SRQ:STATE?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:SRQ:STATE?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:ACTION:SRQ:STATE valuecommand.
SCPI Syntax
- ACTONEVent:ACTION:SRQ:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:SRQ:STATE?
Info
1, ONgenerates an SRQ when the specified event occurs.0, OFFturns off this action.
ActoneventActionSrqState
¶
Bases: SCPICmdWrite, SCPICmdRead
The ACTONEVent:ACTION:SRQ:STATE command.
Description
- Sets or returns the enabled state of the generate service request (SRQ) action when a
specified event occurs. The default state is 0. When this control is set, the instrument
will set the OPC bit (bit 0) in the SESR (Standard Events Status Register) when the
specified event occurs. In order to generate a service request interrupt (SRQ), the SRER
(Service Request Enable Register), DESER (Device Event Status Enable Register), and the
ESER (Event Status Enable Register) must be set appropriately as described in the
programmer manual Synchronization Methods section. Upon completion of the mask test, event
code 2600 (‘Mask testing complete’) is queued to the event queue. To specify an event, use
the command
ACTONEVENT:EVENTTYPE.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:SRQ:STATE?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:SRQ:STATE?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:ACTION:SRQ:STATE valuecommand.
SCPI Syntax
- ACTONEVent:ACTION:SRQ:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:SRQ:STATE?
Info
1, ONgenerates an SRQ when the specified event occurs.0, OFFturns off this action.
ActoneventActionStopacq
¶
Bases: SCPICmdRead
The ACTONEVent:ACTION:STOPACQ command tree.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:STOPACQ?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:STOPACQ?query and raise an AssertionError if the returned value does not matchvalue.
Properties
.state: TheACTONEVent:ACTION:STOPACQ:STATEcommand.
state
property
¶
state: ActoneventActionStopacqState
Return the ACTONEVent:ACTION:STOPACQ:STATE command.
Description
- Stops acquisitions when a specified event occurs, or queries the state of the ‘stop
acquisition’ action. The default state is 0 (off). To specify an event, use the
command
ACTONEVENT:EVENTTYPE.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:STOPACQ:STATE?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:STOPACQ:STATE?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:ACTION:STOPACQ:STATE valuecommand.
SCPI Syntax
- ACTONEVent:ACTION:STOPACQ:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:STOPACQ:STATE?
Info
1, ONstops acquisitions when the specified event occurs.0, OFFturns off this action.
ActoneventActionStopacqState
¶
Bases: SCPICmdWrite, SCPICmdRead
The ACTONEVent:ACTION:STOPACQ:STATE command.
Description
- Stops acquisitions when a specified event occurs, or queries the state of the ‘stop
acquisition’ action. The default state is 0 (off). To specify an event, use the command
ACTONEVENT:EVENTTYPE.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:STOPACQ:STATE?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:STOPACQ:STATE?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:ACTION:STOPACQ:STATE valuecommand.
SCPI Syntax
- ACTONEVent:ACTION:STOPACQ:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:STOPACQ:STATE?
Info
1, ONstops acquisitions when the specified event occurs.0, OFFturns off this action.
ActoneventActionVisual
¶
Bases: SCPICmdRead
The ACTONEVent:ACTION:VISUAL command tree.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:VISUAL?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:VISUAL?query and raise an AssertionError if the returned value does not matchvalue.
Properties
.state: TheACTONEVent:ACTION:VISUAL:STATEcommand.
state
property
¶
state: ActoneventActionVisualState
Return the ACTONEVent:ACTION:VISUAL:STATE command.
Description
- Displays a visual notification when a specified event occurs, or queries the state of
the ‘display a visual notification’ action. The default state is 0 (off). To specify
an event, use the command
ACTONEVENT:EVENTTYPE.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:VISUAL:STATE?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:VISUAL:STATE?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:ACTION:VISUAL:STATE valuecommand.
SCPI Syntax
- ACTONEVent:ACTION:VISUAL:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:VISUAL:STATE?
Info
1, ONdisplays a visual notification when the specified event occurs.0, OFFturns off this action.
ActoneventActionVisualState
¶
Bases: SCPICmdWrite, SCPICmdRead
The ACTONEVent:ACTION:VISUAL:STATE command.
Description
- Displays a visual notification when a specified event occurs, or queries the state of the
‘display a visual notification’ action. The default state is 0 (off). To specify an event,
use the command
ACTONEVENT:EVENTTYPE.
Usage
- Using the
.query()method will send theACTONEVent:ACTION:VISUAL:STATE?query. - Using the
.verify(value)method will send theACTONEVent:ACTION:VISUAL:STATE?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:ACTION:VISUAL:STATE valuecommand.
SCPI Syntax
- ACTONEVent:ACTION:VISUAL:STATE <0|1|OFF|ON>
- ACTONEVent:ACTION:VISUAL:STATE?
Info
1, ONdisplays a visual notification when the specified event occurs.0, OFFturns off this action.
ActoneventEventtype
¶
Bases: SCPICmdWrite, SCPICmdRead
The ACTONEVent:EVENTTYPe command.
Description
- Specifies (or queries) which event to act on (TRIGger, ACQCOMPLete, or NONe) when using an
Act on Event command. The default is NONe. To specify the action to take, use the
ACTONEVent:ACTIONcommands.
Usage
- Using the
.query()method will send theACTONEVent:EVENTTYPe?query. - Using the
.verify(value)method will send theACTONEVent:EVENTTYPe?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:EVENTTYPe valuecommand.
SCPI Syntax
- ACTONEVent:EVENTTYPe <NONe|TRIGger|ACQCOMPLete>
- ACTONEVent:EVENTTYPe?
Info
NONeno event (this is the default).TRIGgerspecifies to act when a trigger occurs.ACQCOMPLetespecifies to act when acquisition completes.
ActoneventNumacqs
¶
Bases: SCPICmdWrite, SCPICmdRead
The ACTONEVent:NUMACQs command.
Description
- Sets (or queries) the number of acquisitions to complete for the event type ACQCOMPLete. The default is 1 acquisition.
Usage
- Using the
.query()method will send theACTONEVent:NUMACQs?query. - Using the
.verify(value)method will send theACTONEVent:NUMACQs?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:NUMACQs valuecommand.
SCPI Syntax
- ACTONEVent:NUMACQs <NR1>
- ACTONEVent:NUMACQs?
ActoneventRepeatcount
¶
Bases: SCPICmdWrite, SCPICmdRead
The ACTONEVent:REPEATCount command.
Description
- Sets or returns the number of events to run.
Usage
- Using the
.query()method will send theACTONEVent:REPEATCount?query. - Using the
.verify(value)method will send theACTONEVent:REPEATCount?query and raise an AssertionError if the returned value does not matchvalue. - Using the
.write(value)method will send theACTONEVent:REPEATCount valuecommand.
SCPI Syntax
- ACTONEVent:REPEATCount <NR1>
- ACTONEVent:REPEATCount?
Info
NR1is an integer that specifies the number of events to run. The default is 1 event and the maximum is 1000000 events. A repeat count greater than 1000000 specifies to run forever. In this case, the action on event can be terminated by setting the state for all actions to OFF. When the repeat count is set to infinite, the query returns 9.9E+37 (IEEE positive infinity).