Source code for RsSmbv.Implementations.Source.Dme

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class DmeCls:
	"""
	| Commands in total: 12
	| Subgroups: 1
	| Direct child commands: 3
	"""

	def __init__(self, core: Core, parent):
		self._core = core
		self._cmd_group = CommandsGroup("dme", core, parent)

	@property
	def analysis(self):
		"""
		| Commands in total: 9
		| Subgroups: 5
		| Direct child commands: 0
		"""
		if not hasattr(self, '_analysis'):
			from .Analysis import AnalysisCls
			self._analysis = AnalysisCls(self._core, self._cmd_group)
		return self._analysis

[docs] def get_low_emission(self) -> bool: """ ``[SOURce<HW>]:DME:LOWemission`` \n Snippet: ``value: bool = driver.source.dme.get_low_emission()`` \n No help available """ response = self._core.io.query_str('SOURce<HwInstance>:DME:LOWemission?') return Conversions.str_to_bool(response)
[docs] def set_low_emission(self, state: bool) -> None: """ ``[SOURce<HW>]:DME:LOWemission`` \n Snippet: ``driver.source.dme.set_low_emission(state = False)`` \n No help available """ param = Conversions.bool_to_str(state) self._core.io.write(f'SOURce<HwInstance>:DME:LOWemission {param}')
[docs] def preset(self) -> None: """ ``[SOURce<HW>]:DME:PRESet`` \n Snippet: ``driver.source.dme.preset()`` \n No help available """ self._core.io.write(f'SOURce<HwInstance>:DME:PRESet')
[docs] def preset_with_opc(self, opc_timeout_ms: int = -1) -> None: """ ``[SOURce<HW>]:DME:PRESet`` \n Snippet: ``driver.source.dme.preset_with_opc()`` \n No help available Same as preset, but waits for the operation to complete before continuing further. Use the RsSmbv.utilities.opc_timeout_set() to set the timeout value. :param opc_timeout_ms: Maximum time to wait in milliseconds, valid only for this call. """ self._core.io.write_with_opc(f'SOURce<HwInstance>:DME:PRESet', opc_timeout_ms)
# noinspection PyTypeChecker
[docs] def get_trigger(self) -> enums.VimDmeTrigMode: """ ``[SOURce<HW>]:DME:TRIGger`` \n Snippet: ``value: enums.VimDmeTrigMode = driver.source.dme.get_trigger()`` \n No help available """ response = self._core.io.query_str('SOURce<HwInstance>:DME:TRIGger?') return Conversions.str_to_scalar_enum(response, enums.VimDmeTrigMode)
[docs] def set_trigger(self, trigger_mode: enums.VimDmeTrigMode) -> None: """ ``[SOURce<HW>]:DME:TRIGger`` \n Snippet: ``driver.source.dme.set_trigger(trigger_mode = enums.VimDmeTrigMode.AUTO)`` \n No help available """ param = Conversions.enum_scalar_to_str(trigger_mode, enums.VimDmeTrigMode) self._core.io.write(f'SOURce<HwInstance>:DME:TRIGger {param}')
def clone(self) -> 'DmeCls': """ Clones the group by creating new object from it and its whole existing subgroups. Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group. """ new_group = DmeCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group