Seek

SCPI Commands :

TSGen:CONFigure:SEEK:POSition
TSGen:CONFigure:SEEK:RESet
TSGen:CONFigure:SEEK:STARt
TSGen:CONFigure:SEEK:STOP
class SeekCls[source]

Seek commands group definition. 4 total commands, 0 Subgroups, 4 group commands

get_position() float[source]
# SCPI: TSGen:CONFigure:SEEK:POSition
value: float = driver.tsGen.configure.seek.get_position()

Sets the position, that is the current playing time position. You can select a value in a 10-hour range.

return:

position: float Range: 0 to 36000000

get_start() float[source]
# SCPI: TSGen:CONFigure:SEEK:STARt
value: float = driver.tsGen.configure.seek.get_start()

Sets an individual start time. You can select a value in a 10-hour range.

return:

start: float Range: 0 to 36000000

get_stop() float[source]
# SCPI: TSGen:CONFigure:SEEK:STOP
value: float = driver.tsGen.configure.seek.get_stop()

Sets an individual stop time. You can select a value in a 10-hour range.

return:

stop: float Range: 0 to 36000000

reset() None[source]
# SCPI: TSGen:CONFigure:SEEK:RESet
driver.tsGen.configure.seek.reset()


    INTRO_CMD_HELP: Resets the following parameters to their default state:

    - method RsSmcv.TsGen.Configure.Seek.start
    - method RsSmcv.TsGen.Configure.Seek.stop
reset_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: TSGen:CONFigure:SEEK:RESet
driver.tsGen.configure.seek.reset_with_opc()


    INTRO_CMD_HELP: Resets the following parameters to their default state:

    - method RsSmcv.TsGen.Configure.Seek.start
    - method RsSmcv.TsGen.Configure.Seek.stop

Same as reset, but waits for the operation to complete before continuing further. Use the RsSmcv.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_position(position: float) None[source]
# SCPI: TSGen:CONFigure:SEEK:POSition
driver.tsGen.configure.seek.set_position(position = 1.0)

Sets the position, that is the current playing time position. You can select a value in a 10-hour range.

param position:

float Range: 0 to 36000000

set_start(start: float) None[source]
# SCPI: TSGen:CONFigure:SEEK:STARt
driver.tsGen.configure.seek.set_start(start = 1.0)

Sets an individual start time. You can select a value in a 10-hour range.

param start:

float Range: 0 to 36000000

set_stop(stop: float) None[source]
# SCPI: TSGen:CONFigure:SEEK:STOP
driver.tsGen.configure.seek.set_stop(stop = 1.0)

Sets an individual stop time. You can select a value in a 10-hour range.

param stop:

float Range: 0 to 36000000