from ....Internal.Core import Core
from ....Internal.CommandsGroup import CommandsGroup
from ....Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
class VolumeCls:
"""
| Commands in total: 1
| Subgroups: 0
| Direct child commands: 1
"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("volume", core, parent)
[docs]
def set(self, volume: float) -> None:
"""
``SYSTem:SPEaker:VOLume`` \n
Snippet: ``driver.system.speaker.volume.set(volume = 1.0)`` \n
Defines the volume of the built-in loudspeaker for demodulated signals. This setting is maintained for all applications.
The command is available in the time domain in Spectrum mode and in Analog Modulation Analysis mode.
:param volume: Percentage of the maximum possible volume. Range: 0 to 1
"""
param = Conversions.decimal_value_to_str(volume)
self._core.io.write(f'SYSTem:SPEaker:VOLume {param}')
[docs]
def get(self) -> float:
"""
``SYSTem:SPEaker:VOLume`` \n
Snippet: ``value: float = driver.system.speaker.volume.get()`` \n
Defines the volume of the built-in loudspeaker for demodulated signals. This setting is maintained for all applications.
The command is available in the time domain in Spectrum mode and in Analog Modulation Analysis mode.
:return: volume: Percentage of the maximum possible volume. Range: 0 to 1
"""
response = self._core.io.query_str(f'SYSTem:SPEaker:VOLume?')
return Conversions.str_to_float(response)