Source code for RsSmbv.Implementations.Source.Ils.Trigger.External.Synchronize

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class SynchronizeCls: """Synchronize commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("synchronize", core, parent)
[docs] def get_output(self) -> bool: """SCPI: [SOURce<HW>]:ILS:TRIGger:EXTernal:SYNChronize:OUTPut \n Snippet: value: bool = driver.source.ils.trigger.external.synchronize.get_output() \n No command help available \n :return: output: No help available """ response = self._core.io.query_str('SOURce<HwInstance>:ILS:TRIGger:EXTernal:SYNChronize:OUTPut?') return Conversions.str_to_bool(response)
[docs] def set_output(self, output: bool) -> None: """SCPI: [SOURce<HW>]:ILS:TRIGger:EXTernal:SYNChronize:OUTPut \n Snippet: driver.source.ils.trigger.external.synchronize.set_output(output = False) \n No command help available \n :param output: No help available """ param = Conversions.bool_to_str(output) self._core.io.write(f'SOURce<HwInstance>:ILS:TRIGger:EXTernal:SYNChronize:OUTPut {param}')