Source code for RsSmab.Implementations.Source.Pulm.Train.Ontime

from typing import List

from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class OntimeCls: """Ontime commands group definition. 2 total commands, 0 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("ontime", core, parent)
[docs] def get_points(self) -> int: """SCPI: [SOURce<HW>]:PULM:TRAin:ONTime:POINts \n Snippet: value: int = driver.source.pulm.train.ontime.get_points() \n Queries the number of on and off time entries and repetitions in the selected list. \n :return: points: integer Range: 0 to INT_MAX """ response = self._core.io.query_str('SOURce<HwInstance>:PULM:TRAin:ONTime:POINts?') return Conversions.str_to_int(response)
[docs] def get_value(self) -> List[float]: """SCPI: [SOURce<HW>]:PULM:TRAin:ONTime \n Snippet: value: List[float] = driver.source.pulm.train.ontime.get_value() \n Enters the pulse on/off times values in the selected list. \n :return: ontime: No help available """ response = self._core.io.query_bin_or_ascii_float_list('SOURce<HwInstance>:PULM:TRAin:ONTime?') return response
[docs] def set_value(self, ontime: List[float]) -> None: """SCPI: [SOURce<HW>]:PULM:TRAin:ONTime \n Snippet: driver.source.pulm.train.ontime.set_value(ontime = [1.1, 2.2, 3.3]) \n Enters the pulse on/off times values in the selected list. \n :param ontime: Offtime#1{, Offtime#2, ...} | binary block data List of comma-separated numeric values or binary block data, where: The list of numbers can be of any length. In binary block format, 8 (4) bytes are always interpreted as a floating-point number with double accuracy. See method RsSmab.FormatPy.data for details. The maximum length is 2047 values. Range: 0 ns to 5 ms """ param = Conversions.list_to_csv_str(ontime) self._core.io.write(f'SOURce<HwInstance>:PULM:TRAin:ONTime {param}')