from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
# 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, state: bool) -> None:
"""
``CONFigure:GENerator:CONNection[:STATe]`` \n
Snippet: ``driver.configure.generator.connection.state.set(state = False)`` \n
Connects or disconnects the signal generator specified by method ``RsFsw.configure.generator.ipConnection.address.set()``
. The IP address must be specified before you use this command.
:param state: ON | OFF | 0 | 1 OFF | 0 Disconnects the generator. ON | 1 Connects the generator.
"""
param = Conversions.bool_to_str(state)
self._core.io.write_with_opc(f'CONFigure:GENerator:CONNection:STATe {param}')
[docs]
def get(self) -> bool:
"""
``CONFigure:GENerator:CONNection[:STATe]`` \n
Snippet: ``value: bool = driver.configure.generator.connection.state.get()`` \n
Connects or disconnects the signal generator specified by method ``RsFsw.configure.generator.ipConnection.address.set()``
. The IP address must be specified before you use this command.
:return: state: ON | OFF | 0 | 1 OFF | 0 Disconnects the generator. ON | 1 Connects the generator.
"""
response = self._core.io.query_str_with_opc(f'CONFigure:GENerator:CONNection:STATe?')
return Conversions.str_to_bool(response)