Source code for RsSmbv.Implementations.Source.InputPy.User.Clock

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class ClockCls: """Clock commands group definition. 3 total commands, 0 Subgroups, 3 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("clock", core, parent) # noinspection PyTypeChecker
[docs] def get_impedance(self) -> enums.ImpG50G1K: """SCPI: [SOURce]:INPut:USER:CLOCk:IMPedance \n Snippet: value: enums.ImpG50G1K = driver.source.inputPy.user.clock.get_impedance() \n Selects the input impedance for the external trigger inputs. \n :return: impedance: G50| G1K G50 50 Ohm per ground G1K 1 kOhm per ground """ response = self._core.io.query_str('SOURce:INPut:USER:CLOCk:IMPedance?') return Conversions.str_to_scalar_enum(response, enums.ImpG50G1K)
[docs] def set_impedance(self, impedance: enums.ImpG50G1K) -> None: """SCPI: [SOURce]:INPut:USER:CLOCk:IMPedance \n Snippet: driver.source.inputPy.user.clock.set_impedance(impedance = enums.ImpG50G1K.G1K) \n Selects the input impedance for the external trigger inputs. \n :param impedance: G50| G1K G50 50 Ohm per ground G1K 1 kOhm per ground """ param = Conversions.enum_scalar_to_str(impedance, enums.ImpG50G1K) self._core.io.write(f'SOURce:INPut:USER:CLOCk:IMPedance {param}')
[docs] def get_level(self) -> float: """SCPI: [SOURce]:INPut:USER:CLOCk:LEVel \n Snippet: value: float = driver.source.inputPy.user.clock.get_level() \n Sets the threshold for any input signal at the User1-2 connectors. \n :return: level: float Range: 0.1 to 2 """ response = self._core.io.query_str('SOURce:INPut:USER:CLOCk:LEVel?') return Conversions.str_to_float(response)
[docs] def set_level(self, level: float) -> None: """SCPI: [SOURce]:INPut:USER:CLOCk:LEVel \n Snippet: driver.source.inputPy.user.clock.set_level(level = 1.0) \n Sets the threshold for any input signal at the User1-2 connectors. \n :param level: float Range: 0.1 to 2 """ param = Conversions.decimal_value_to_str(level) self._core.io.write(f'SOURce:INPut:USER:CLOCk:LEVel {param}')
# noinspection PyTypeChecker
[docs] def get_slope(self) -> enums.SlopeType: """SCPI: [SOURce]:INPut:USER:CLOCk:SLOPe \n Snippet: value: enums.SlopeType = driver.source.inputPy.user.clock.get_slope() \n Sets the polarity of the active slope of an externally applied clock signal. \n :return: slope: NEGative| POSitive """ response = self._core.io.query_str('SOURce:INPut:USER:CLOCk:SLOPe?') return Conversions.str_to_scalar_enum(response, enums.SlopeType)
[docs] def set_slope(self, slope: enums.SlopeType) -> None: """SCPI: [SOURce]:INPut:USER:CLOCk:SLOPe \n Snippet: driver.source.inputPy.user.clock.set_slope(slope = enums.SlopeType.NEGative) \n Sets the polarity of the active slope of an externally applied clock signal. \n :param slope: NEGative| POSitive """ param = Conversions.enum_scalar_to_str(slope, enums.SlopeType) self._core.io.write(f'SOURce:INPut:USER:CLOCk:SLOPe {param}')