Dme

SCPI Commands :

[SOURce<HW>]:DME:LOWemission
[SOURce<HW>]:DME:PRESet
[SOURce<HW>]:DME:TRIGger
class DmeCls[source]

Dme commands group definition. 12 total commands, 1 Subgroups, 3 group commands

get_low_emission() bool[source]
# SCPI: [SOURce<HW>]:DME:LOWemission
value: bool = driver.source.dme.get_low_emission()

No command help available

return

state: No help available

get_trigger() RsSmbv.enums.VimDmeTrigMode[source]
# SCPI: [SOURce<HW>]:DME:TRIGger
value: enums.VimDmeTrigMode = driver.source.dme.get_trigger()

No command help available

return

trigger_mode: No help available

preset() None[source]
# SCPI: [SOURce<HW>]:DME:PRESet
driver.source.dme.preset()

No command help available

preset_with_opc(opc_timeout_ms: int = - 1) None[source]
# SCPI: [SOURce<HW>]:DME:PRESet
driver.source.dme.preset_with_opc()

No command help available

Same as preset, but waits for the operation to complete before continuing further. Use the RsSmbv.utilities.opc_timeout_set() to set the timeout value.

param opc_timeout_ms

Maximum time to wait in milliseconds, valid only for this call.

set_low_emission(state: bool) None[source]
# SCPI: [SOURce<HW>]:DME:LOWemission
driver.source.dme.set_low_emission(state = False)

No command help available

param state

No help available

set_trigger(trigger_mode: RsSmbv.enums.VimDmeTrigMode) None[source]
# SCPI: [SOURce<HW>]:DME:TRIGger
driver.source.dme.set_trigger(trigger_mode = enums.VimDmeTrigMode.AUTO)

No command help available

param trigger_mode

No help available

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.dme.clone()

Subgroups