ListPy

SCPI Commands :

[SOURce<HW>]:LIST:DWELl:LIST:POINts
[SOURce<HW>]:LIST:DWELl:LIST
class ListPyCls[source]

ListPy commands group definition. 2 total commands, 0 Subgroups, 2 group commands

get_points() int[source]
# SCPI: [SOURce<HW>]:LIST:DWELl:LIST:POINts
value: int = driver.source.listPy.dwell.listPy.get_points()

Queries the number (points) of dwell time entries in the selected list.

return

points: integer Range: 0 to INT_MAX

get_value() List[int][source]
# SCPI: [SOURce<HW>]:LIST:DWELl:LIST
value: List[int] = driver.source.listPy.dwell.listPy.get_value()

Enters the dwell time values in the selected list in us.

return

dwell: Dwell#1{, Dwell#2, …} | block data You can either enter the data as a list of numbers, or as binary block data. The list of numbers can be of any length, with the list entries separated by commas. In binary block format, 8 (4) bytes are always interpreted as a floating-point number with double accuracy. See also method RsSmbv.FormatPy.data for more details.

set_value(dwell: List[int]) None[source]
# SCPI: [SOURce<HW>]:LIST:DWELl:LIST
driver.source.listPy.dwell.listPy.set_value(dwell = [1, 2, 3])

Enters the dwell time values in the selected list in us.

param dwell

Dwell#1{, Dwell#2, …} | block data You can either enter the data as a list of numbers, or as binary block data. The list of numbers can be of any length, with the list entries separated by commas. In binary block format, 8 (4) bytes are always interpreted as a floating-point number with double accuracy. See also method RsSmbv.FormatPy.data for more details.