Source code for RsSmw.Implementations.Source.Bb.Dvb.Dvbx.ThConfig.TeIndication

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class TeIndicationCls:
	"""
	| Commands in total: 1
	| Subgroups: 0
	| Direct child commands: 1
	"""

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

[docs] def get_state(self) -> bool: """ ``[SOURce<HW>]:BB:DVB:DVBX:THConfig:TEINdication:[STATe]`` \n Snippet: ``value: bool = driver.source.bb.dvb.dvbx.thConfig.teIndication.get_state()`` \n Inserts transport error indication information in the header. :return: te_indication: 1 | ON | 0| OFF """ response = self._core.io.query_str('SOURce<HwInstance>:BB:DVB:DVBX:THConfig:TEINdication:STATe?') return Conversions.str_to_bool(response)
[docs] def set_state(self, te_indication: bool) -> None: """ ``[SOURce<HW>]:BB:DVB:DVBX:THConfig:TEINdication:[STATe]`` \n Snippet: ``driver.source.bb.dvb.dvbx.thConfig.teIndication.set_state(te_indication = False)`` \n Inserts transport error indication information in the header. :param te_indication: 1 | ON | 0| OFF """ param = Conversions.bool_to_str(te_indication) self._core.io.write(f'SOURce<HwInstance>:BB:DVB:DVBX:THConfig:TEINdication:STATe {param}')