Source code for RsSmw.Implementations.Output.User.Direction

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


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

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

[docs] def set(self, direction: enums.ConnDirection, userIx=repcap.UserIx.Default) -> None: """ ``OUTPut<HW>:USER<CH>:DIRection`` \n Snippet: ``driver.output.user.direction.set(direction = enums.ConnDirection.INPut, userIx = repcap.UserIx.Default)`` \n Sets the direction of the signal at the connector that can be an input or an output. :param direction: INPut | OUTPut | UNUSed INPut | OUTPut Input signal or output signal UNUSed No signals present at the connector. :param userIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'User') """ param = Conversions.enum_scalar_to_str(direction, enums.ConnDirection) userIx_cmd_val = self._cmd_group.get_repcap_cmd_value(userIx, repcap.UserIx) self._core.io.write(f'OUTPut<HwInstance>:USER{userIx_cmd_val}:DIRection {param}')
# noinspection PyTypeChecker
[docs] def get(self, userIx=repcap.UserIx.Default) -> enums.ConnDirection: """ ``OUTPut<HW>:USER<CH>:DIRection`` \n Snippet: ``value: enums.ConnDirection = driver.output.user.direction.get(userIx = repcap.UserIx.Default)`` \n Sets the direction of the signal at the connector that can be an input or an output. :param userIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'User') :return: direction: INPut | OUTPut | UNUSed INPut | OUTPut Input signal or output signal UNUSed No signals present at the connector. """ userIx_cmd_val = self._cmd_group.get_repcap_cmd_value(userIx, repcap.UserIx) response = self._core.io.query_str(f'OUTPut<HwInstance>:USER{userIx_cmd_val}:DIRection?') return Conversions.str_to_scalar_enum(response, enums.ConnDirection)