Source code for RsFsw.Implementations.Applications.K70_Vsa.Trigger.Sequence.Level.Video

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class VideoCls: """Video commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("video", core, parent)
[docs] def set(self, arg_0: float, triggerPort=repcap.TriggerPort.Default) -> None: """SCPI: TRIGger<tp>[:SEQuence]:LEVel:VIDeo \n Snippet: driver.applications.k70Vsa.trigger.sequence.level.video.set(arg_0 = 1.0, triggerPort = repcap.TriggerPort.Default) \n Defines the level the video signal must exceed to cause a trigger event. Note that any RF attenuation or preamplification is considered when the trigger level is analyzed. \n :param arg_0: Range: 0 PCT to 100 PCT, Unit: PCT :param triggerPort: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Trigger') """ param = Conversions.decimal_value_to_str(arg_0) triggerPort_cmd_val = self._cmd_group.get_repcap_cmd_value(triggerPort, repcap.TriggerPort) self._core.io.write(f'TRIGger{triggerPort_cmd_val}:SEQuence:LEVel:VIDeo {param}')
[docs] def get(self, triggerPort=repcap.TriggerPort.Default) -> float: """SCPI: TRIGger<tp>[:SEQuence]:LEVel:VIDeo \n Snippet: value: float = driver.applications.k70Vsa.trigger.sequence.level.video.get(triggerPort = repcap.TriggerPort.Default) \n Defines the level the video signal must exceed to cause a trigger event. Note that any RF attenuation or preamplification is considered when the trigger level is analyzed. \n :param triggerPort: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Trigger') :return: arg_0: No help available""" triggerPort_cmd_val = self._cmd_group.get_repcap_cmd_value(triggerPort, repcap.TriggerPort) response = self._core.io.query_str(f'TRIGger{triggerPort_cmd_val}:SEQuence:LEVel:VIDeo?') return Conversions.str_to_float(response)