Clock

SCPI Commands :

[SOURce]:INPut:USER:CLOCk:IMPedance
[SOURce]:INPut:USER:CLOCk:LEVel
[SOURce]:INPut:USER:CLOCk:SLOPe
class ClockCls[source]

Clock commands group definition. 3 total commands, 0 Subgroups, 3 group commands

get_impedance() ImpG50G1KcoerceG10K[source]
# SCPI: [SOURce]:INPut:USER:CLOCk:IMPedance
value: enums.ImpG50G1KcoerceG10K = driver.source.inputPy.user.clock.get_impedance()

Selects the input impedance for the external trigger inputs.

return:

impedance: G50| G1K

get_level() float[source]
# SCPI: [SOURce]:INPut:USER:CLOCk:LEVel
value: float = driver.source.inputPy.user.clock.get_level()

Sets the threshold for any input signal at the User1-2 connectors.

return:

level: float Range: 0.1 to 2

get_slope() SlopeType[source]
# SCPI: [SOURce]:INPut:USER:CLOCk:SLOPe
value: enums.SlopeType = driver.source.inputPy.user.clock.get_slope()

Sets the polarity of the active slope of an externally applied clock signal.

return:

slope: NEGative| POSitive

set_impedance(impedance: ImpG50G1KcoerceG10K) None[source]
# SCPI: [SOURce]:INPut:USER:CLOCk:IMPedance
driver.source.inputPy.user.clock.set_impedance(impedance = enums.ImpG50G1KcoerceG10K.G1K)

Selects the input impedance for the external trigger inputs.

param impedance:

G50| G1K

set_level(level: float) None[source]
# SCPI: [SOURce]:INPut:USER:CLOCk:LEVel
driver.source.inputPy.user.clock.set_level(level = 1.0)

Sets the threshold for any input signal at the User1-2 connectors.

param level:

float Range: 0.1 to 2

set_slope(slope: SlopeType) None[source]
# SCPI: [SOURce]:INPut:USER:CLOCk:SLOPe
driver.source.inputPy.user.clock.set_slope(slope = enums.SlopeType.NEGative)

Sets the polarity of the active slope of an externally applied clock signal.

param slope:

NEGative| POSitive