Source code for RsFswp.Implementations.Sense.Correction.Transducer.Select

from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class SelectCls: """Select commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("select", core, parent)
[docs] def set(self, name: str) -> None: """SCPI: [SENSe]:CORRection:TRANsducer:SELect \n Snippet: driver.sense.correction.transducer.select.set(name = '1') \n No command help available \n :param name: No help available """ param = Conversions.value_to_quoted_str(name) self._core.io.write(f'SENSe:CORRection:TRANsducer:SELect {param}')