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 OutputCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("output", core, parent)
[docs]
def set(self, dev_name: str, state: bool) -> None:
"""
``[SENSe]:SAMPling:CLKio:OUTPut`` \n
Snippet: ``driver.sense.sampling.clkio.output.set(dev_name = 'abc', state = False)`` \n
No help available
"""
param = ArgSingleList().compose_cmd_string(ArgSingle('dev_name', dev_name, DataType.String), ArgSingle('state', state, DataType.Boolean))
self._core.io.write(f'SENSe:SAMPling:CLKio:OUTPut {param}'.rstrip())
[docs]
def get(self) -> bool:
"""
``[SENSe]:SAMPling:CLKio:OUTPut`` \n
Snippet: ``value: bool = driver.sense.sampling.clkio.output.get()`` \n
No help available
"""
response = self._core.io.query_str(f'SENSe:SAMPling:CLKio:OUTPut?')
return Conversions.str_to_bool(response)