Source code for RsSmw.Implementations.Source.LfOutput.Shape.Pulse.Width

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class WidthCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

	def __init__(self, core: Core, parent):
		self._core = core
		self._cmd_group = CommandsGroup("width", core, parent)

[docs] def set(self, width: float, lfOutput=repcap.LfOutput.Default) -> None: """ ``[SOURce<HW>]:LFOutput<CH>:SHAPe:PULSe:WIDTh`` \n Snippet: ``driver.source.lfOutput.shape.pulse.width.set(width = 1.0, lfOutput = repcap.LfOutput.Default)`` \n Sets the pulse width of the generated pulse. :param width: float Range: 1E-6 to 100 :param lfOutput: optional repeated capability selector. Default value: Nr1 (settable in the interface 'LfOutput') """ param = Conversions.decimal_value_to_str(width) lfOutput_cmd_val = self._cmd_group.get_repcap_cmd_value(lfOutput, repcap.LfOutput) self._core.io.write(f'SOURce<HwInstance>:LFOutput{lfOutput_cmd_val}:SHAPe:PULSe:WIDTh {param}')
[docs] def get(self, lfOutput=repcap.LfOutput.Default) -> float: """ ``[SOURce<HW>]:LFOutput<CH>:SHAPe:PULSe:WIDTh`` \n Snippet: ``value: float = driver.source.lfOutput.shape.pulse.width.get(lfOutput = repcap.LfOutput.Default)`` \n Sets the pulse width of the generated pulse. :param lfOutput: optional repeated capability selector. Default value: Nr1 (settable in the interface 'LfOutput') :return: width: float Range: 1E-6 to 100 """ lfOutput_cmd_val = self._cmd_group.get_repcap_cmd_value(lfOutput, repcap.LfOutput) response = self._core.io.query_str(f'SOURce<HwInstance>:LFOutput{lfOutput_cmd_val}:SHAPe:PULSe:WIDTh?') return Conversions.str_to_float(response)