Pulm

SCPI Commands :

[SOURce<HW>]:PULM:DELay
[SOURce<HW>]:PULM:POLarity
[SOURce<HW>]:PULM:SOURce
[SOURce<HW>]:PULM:STATe
class PulmCls[source]

Pulm commands group definition. 10 total commands, 2 Subgroups, 4 group commands

get_delay() float[source]
# SCPI: [SOURce<HW>]:PULM:DELay
value: float = driver.source.pulm.get_delay()

No command help available

return:

delay: No help available

get_polarity() NormalInverted[source]
# SCPI: [SOURce<HW>]:PULM:POLarity
value: enums.NormalInverted = driver.source.pulm.get_polarity()

No command help available

return:

polarity: No help available

get_source() PulseSoure[source]
# SCPI: [SOURce<HW>]:PULM:SOURce
value: enums.PulseSoure = driver.source.pulm.get_source()

No command help available

return:

source: No help available

get_state() bool[source]
# SCPI: [SOURce<HW>]:PULM:STATe
value: bool = driver.source.pulm.get_state()

No command help available

return:

state: No help available

set_delay(delay: float) None[source]
# SCPI: [SOURce<HW>]:PULM:DELay
driver.source.pulm.set_delay(delay = 1.0)

No command help available

param delay:

No help available

set_polarity(polarity: NormalInverted) None[source]
# SCPI: [SOURce<HW>]:PULM:POLarity
driver.source.pulm.set_polarity(polarity = enums.NormalInverted.INVerted)

No command help available

param polarity:

No help available

set_source(source: PulseSoure) None[source]
# SCPI: [SOURce<HW>]:PULM:SOURce
driver.source.pulm.set_source(source = enums.PulseSoure.CODer)

No command help available

param source:

No help available

set_state(state: bool) None[source]
# SCPI: [SOURce<HW>]:PULM:STATe
driver.source.pulm.set_state(state = False)

No command help available

param state:

No help available

Cloning the Group

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

Subgroups