Source code for RsSmw.Implementations.Sconfiguration.External.Rf.Remote.Initialization.File

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


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

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

[docs] def set(self, filename: str, path=repcap.Path.Default) -> None: """ ``SCONfiguration:EXTernal:RF<CH>:REMote:INITialization:FILE`` \n Snippet: ``driver.sconfiguration.external.rf.remote.initialization.file.set(filename = 'abc', path = repcap.Path.Default)`` \n Queries the currently selected initialization file. :param filename: string filename with file extension (iec) :param path: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Rf') """ param = Conversions.value_to_quoted_str(filename) path_cmd_val = self._cmd_group.get_repcap_cmd_value(path, repcap.Path) self._core.io.write(f'SCONfiguration:EXTernal:RF{path_cmd_val}:REMote:INITialization:FILE {param}')
[docs] def get(self, path=repcap.Path.Default) -> str: """ ``SCONfiguration:EXTernal:RF<CH>:REMote:INITialization:FILE`` \n Snippet: ``value: str = driver.sconfiguration.external.rf.remote.initialization.file.get(path = repcap.Path.Default)`` \n Queries the currently selected initialization file. :param path: optional repeated capability selector. Default value: Nr1 (settable in the interface 'Rf') :return: filename: string filename with file extension (iec) """ path_cmd_val = self._cmd_group.get_repcap_cmd_value(path, repcap.Path) response = self._core.io.query_str(f'SCONfiguration:EXTernal:RF{path_cmd_val}:REMote:INITialization:FILE?') return trim_str_response(response)