Source code for RsSmw.Implementations.Source.Bb.Gnss.Time.Conversion.Independent.Leap

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class LeapCls:
	"""
	| Commands in total: 5
	| Subgroups: 2
	| Direct child commands: 2
	"""

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

	@property
	def date(self):
		"""
		| Commands in total: 1
		| Subgroups: 0
		| Direct child commands: 1
		"""
		if not hasattr(self, '_date'):
			from .Date import DateCls
			self._date = DateCls(self._core, self._cmd_group)
		return self._date

	@property
	def seconds(self):
		"""
		| Commands in total: 2
		| Subgroups: 0
		| Direct child commands: 2
		"""
		if not hasattr(self, '_seconds'):
			from .Seconds import SecondsCls
			self._seconds = SecondsCls(self._core, self._cmd_group)
		return self._seconds

[docs] def get_state(self) -> bool: """ ``[SOURce<HW>]:BB:GNSS:TIME:CONVersion:INDependent:LEAP:STATe`` \n Snippet: ``value: bool = driver.source.bb.gnss.time.conversion.independent.leap.get_state()`` \n Enables the leap second transition. :return: state: 1 | ON | 0| OFF """ response = self._core.io.query_str('SOURce<HwInstance>:BB:GNSS:TIME:CONVersion:INDependent:LEAP:STATe?') return Conversions.str_to_bool(response)
[docs] def set_state(self, state: bool) -> None: """ ``[SOURce<HW>]:BB:GNSS:TIME:CONVersion:INDependent:LEAP:STATe`` \n Snippet: ``driver.source.bb.gnss.time.conversion.independent.leap.set_state(state = False)`` \n Enables the leap second transition. :param state: 1 | ON | 0| OFF """ param = Conversions.bool_to_str(state) self._core.io.write(f'SOURce<HwInstance>:BB:GNSS:TIME:CONVersion:INDependent:LEAP:STATe {param}')
# noinspection PyTypeChecker
[docs] def get_system(self) -> enums.HybridLs: """ ``[SOURce<HW>]:BB:GNSS:TIME:CONVersion:INDependent:LEAP:SYSTem`` \n Snippet: ``value: enums.HybridLs = driver.source.bb.gnss.time.conversion.independent.leap.get_system()`` \n Queries the GNSS for leap second transition that is the BeiDou GNSS. :return: system: BEIDou """ response = self._core.io.query_str('SOURce<HwInstance>:BB:GNSS:TIME:CONVersion:INDependent:LEAP:SYSTem?') return Conversions.str_to_scalar_enum(response, enums.HybridLs)
[docs] def set_system(self, system: enums.HybridLs) -> None: """ ``[SOURce<HW>]:BB:GNSS:TIME:CONVersion:INDependent:LEAP:SYSTem`` \n Snippet: ``driver.source.bb.gnss.time.conversion.independent.leap.set_system(system = enums.HybridLs.BEIDou)`` \n Queries the GNSS for leap second transition that is the BeiDou GNSS. :param system: BEIDou """ param = Conversions.enum_scalar_to_str(system, enums.HybridLs) self._core.io.write(f'SOURce<HwInstance>:BB:GNSS:TIME:CONVersion:INDependent:LEAP:SYSTem {param}')
def clone(self) -> 'LeapCls': """ 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 = LeapCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group