from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
from ......Internal.Types import DataType
from ......Internal.ArgSingleList import ArgSingleList
from ......Internal.ArgSingle import ArgSingle
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class StateCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("state", core, parent)
[docs]
def set(self, sec_pass_word: str, rpc_state: bool) -> None:
"""
``SYSTem:SECurity:NETWork:RPC:[STATe]`` \n
Snippet: ``driver.system.security.network.rpc.state.set(sec_pass_word = 'abc', rpc_state = False)`` \n
Enables the LAN interface for remote control of the instrument via remote procedure calls (RPC) .
:param sec_pass_word: string Current security password.
:param rpc_state: 1 | ON | 0| OFF
"""
param = ArgSingleList().compose_cmd_string(ArgSingle('sec_pass_word', sec_pass_word, DataType.String), ArgSingle('rpc_state', rpc_state, DataType.Boolean))
self._core.io.write(f'SYSTem:SECurity:NETWork:RPC:STATe {param}'.rstrip())
[docs]
def get(self) -> bool:
"""
``SYSTem:SECurity:NETWork:RPC:[STATe]`` \n
Snippet: ``value: bool = driver.system.security.network.rpc.state.get()`` \n
Enables the LAN interface for remote control of the instrument via remote procedure calls (RPC) .
:return: rpc_state: 1 | ON | 0| OFF
"""
response = self._core.io.query_str(f'SYSTem:SECurity:NETWork:RPC:STATe?')
return Conversions.str_to_bool(response)