Source code for RsCmwBluetoothSig.Implementations.Configure_.Audio

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class Audio: """Audio commands group definition. 2 total commands, 0 Sub-groups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._base = CommandsGroup("audio", core, parent) # noinspection PyTypeChecker
[docs] def get_prf_role(self) -> enums.ProfileRole: """SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:AUDio:PRFRole \n Snippet: value: enums.ProfileRole = driver.configure.audio.get_prf_role() \n Specifies the audio profile role of the EUT. \n :return: profile_role: HNDFree | ADGate | ASINk Hands free, hands free - audio gateway, A2DP sink """ response = self._core.io.query_str('CONFigure:BLUetooth:SIGNaling<Instance>:AUDio:PRFRole?') return Conversions.str_to_scalar_enum(response, enums.ProfileRole)
[docs] def set_prf_role(self, profile_role: enums.ProfileRole) -> None: """SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:AUDio:PRFRole \n Snippet: driver.configure.audio.set_prf_role(profile_role = enums.ProfileRole.ADGate) \n Specifies the audio profile role of the EUT. \n :param profile_role: HNDFree | ADGate | ASINk Hands free, hands free - audio gateway, A2DP sink """ param = Conversions.enum_scalar_to_str(profile_role, enums.ProfileRole) self._core.io.write(f'CONFigure:BLUetooth:SIGNaling<Instance>:AUDio:PRFRole {param}')
# noinspection PyTypeChecker
[docs] def get_cmw_role(self) -> enums.PriorityRole: """SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:AUDio:CMWRole \n Snippet: value: enums.PriorityRole = driver.configure.audio.get_cmw_role() \n No command help available \n :return: cmw_role: No help available """ response = self._core.io.query_str('CONFigure:BLUetooth:SIGNaling<Instance>:AUDio:CMWRole?') return Conversions.str_to_scalar_enum(response, enums.PriorityRole)
[docs] def set_cmw_role(self, cmw_role: enums.PriorityRole) -> None: """SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:AUDio:CMWRole \n Snippet: driver.configure.audio.set_cmw_role(cmw_role = enums.PriorityRole.MASTer) \n No command help available \n :param cmw_role: No help available """ param = Conversions.enum_scalar_to_str(cmw_role, enums.PriorityRole) self._core.io.write(f'CONFigure:BLUetooth:SIGNaling<Instance>:AUDio:CMWRole {param}')