from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class RangeCls:
"""
| Commands in total: 2
| Subgroups: 0
| Direct child commands: 2
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("range", core, parent)
[docs]
def get_lower(self) -> float:
"""
``[SOURce<HW>]:POWer:RANGe:LOWer`` \n
Snippet: ``value: float = driver.source.power.range.get_lower()`` \n
Queries the current interruption-free range of the level.
:return: lower: float Unit: dBm
"""
response = self._core.io.query_str('SOURce<HwInstance>:POWer:RANGe:LOWer?')
return Conversions.str_to_float(response)
[docs]
def get_upper(self) -> float:
"""
``[SOURce<HW>]:POWer:RANGe:UPPer`` \n
Snippet: ``value: float = driver.source.power.range.get_upper()`` \n
Queries the current interruption-free range of the level.
:return: upper: float Unit: dBm
"""
response = self._core.io.query_str('SOURce<HwInstance>:POWer:RANGe:UPPer?')
return Conversions.str_to_float(response)