Mevents
SCPI Commands :
TRIGger:MEVents:MODE
TRIGger:MEVents:AEVents
- Commands in total: 7Subgroups: 1Direct child commands: 2
- get_aevents() TriggerMultiEventsType[source]
# TRIGger:MEVents:AEVents value: enums.TriggerMultiEventsType = driver.trigger.mevents.get_aevents()
Selects the type of the trigger sequence.
- Returns:
type_py: AONLy = single event, same as method
RsMxo.trigger.mevents.mode()ABR = sequence A -> B -> R AZ = sequence A -> Zone trigger ASB = sequence A -> Serial bus
- get_mode() EventsMode[source]
# TRIGger:MEVents:MODE value: enums.EventsMode = driver.trigger.mevents.get_mode()
Selects, if you want to trigger on a single event, or on a series of events.
- Returns:
class_py: SINGle | SEQuence
- set_aevents(type_py: TriggerMultiEventsType) None[source]
# TRIGger:MEVents:AEVents driver.trigger.mevents.set_aevents(type_py = enums.TriggerMultiEventsType.AB)
Selects the type of the trigger sequence.
- Parameters:
type_py – AONLy = single event, same as method
RsMxo.trigger.mevents.mode()ABR = sequence A -> B -> R AZ = sequence A -> Zone trigger ASB = sequence A -> Serial bus
- set_mode(class_py: EventsMode) None[source]
# TRIGger:MEVents:MODE driver.trigger.mevents.set_mode(class_py = enums.EventsMode.SEQuence)
Selects, if you want to trigger on a single event, or on a series of events.
- Parameters:
class_py – SINGle | SEQuence
Cloning the Group
# Create a copy of the original group, that exists independently
mevents_copy = driver.trigger.mevents.clone()
Subgroups