ListPy
SCPI Commands :
[SOURce<HW>]:LIST:DWELl:LIST:POINts
[SOURce<HW>]:LIST:DWELl:LIST
- Commands in total: 2Subgroups: 0Direct child commands: 2
- get_points() int[source]
# [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.
- Returns:
points: integer Range: 0 to INT_MAX
- get_value() List[int][source]
# [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.
- Returns:
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
RsSmw.formatPy.data()for more details.
- set_value(dwell: List[int]) None[source]
# [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.
- Parameters:
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
RsSmw.formatPy.data()for more details.