Source code for RsSmw.Implementations.Connector.User.Clock.Slope

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 SlopeCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

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

[docs] def set(self, slope: enums.SlopeType, userIx=repcap.UserIx.Default) -> None: """ ``CONNector:USER<CH>:CLOCk:SLOPe`` \n Snippet: ``driver.connector.user.clock.slope.set(slope = enums.SlopeType.NEGative, userIx = repcap.UserIx.Default)`` \n No help available :param userIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'User') """ param = Conversions.enum_scalar_to_str(slope, enums.SlopeType) userIx_cmd_val = self._cmd_group.get_repcap_cmd_value(userIx, repcap.UserIx) self._core.io.write(f'CONNector:USER{userIx_cmd_val}:CLOCk:SLOPe {param}')
# noinspection PyTypeChecker
[docs] def get(self, userIx=repcap.UserIx.Default) -> enums.SlopeType: """ ``CONNector:USER<CH>:CLOCk:SLOPe`` \n Snippet: ``value: enums.SlopeType = driver.connector.user.clock.slope.get(userIx = repcap.UserIx.Default)`` \n No help available :param userIx: optional repeated capability selector. Default value: Nr1 (settable in the interface 'User') """ userIx_cmd_val = self._cmd_group.get_repcap_cmd_value(userIx, repcap.UserIx) response = self._core.io.query_str(f'CONNector:USER{userIx_cmd_val}:CLOCk:SLOPe?') return Conversions.str_to_scalar_enum(response, enums.SlopeType)