gpt4 book ai didi

Qt 如何在 Linux 中以编程方式正确连接到手机(蓝牙 A2DP、AVRCP、HSP、HFP)

转载 作者:行者123 更新时间:2023-12-04 15:53:54 26 4
gpt4 key购买 nike

我正在尝试开发一个使用 bluez stack 以及 pulseaudio 和 ofono 的应用程序,以便连接到手机并实现媒体播放 (A2DP)、媒体控制 (AVRCP) 和免提电话 (HFP) 等任务).当我通过 bluetoothctl 连接到我的手机时,它会自动连接到所有可用的配置文件,因此可以通过我的程序使用所有配置文件 A2DP、AVRCP、HFP。如果我没有使用 bluetoothctl 连接到我的手机,则表示 ofono 未启用/未启用免提/HFP 调制解调器。

但是,当我在 Qt 中使用 QBluetoothSocket 并使用配置文件进行连接时,始终存在未连接的配置文件。例如连接到免提配置文件,电话功能正常,但媒体控制不起作用。简而言之,我希望能够像 bluetoothctl 那样连接到蓝牙。我在Qt中的内容如下(简而言之):

static const QList<QBluetoothUuid> audioUuids = QList<QBluetoothUuid>()
<< QBluetoothUuid::HeadsetAG
<< QBluetoothUuid::AV_RemoteControlTarget;
..
void BtConnection::setConnection(int index)
{
if(m_bluetoothSocket == nullptr) {
m_bluetoothSocket = new QBluetoothSocket(QBluetoothServiceInfo::RfcommProtocol);
qDebug() << "Created Bluetooth Socket";
}
if(m_bluetoothSocket != nullptr) {
connect(m_bluetoothSocket, SIGNAL(connected()), this, SLOT(connected()));
connect(m_bluetoothSocket, SIGNAL(disconnected()), this, SLOT(disconnected()));
connect(m_bluetoothSocket, SIGNAL(error(QBluetoothSocket::SocketError)),
this, SLOT(connectionError(QBluetoothSocket::SocketError)));
}

m_device = get(index);

// Check if an element in m_device.serviceUuids() match with an element in audioUuids
QList<QBluetoothUuid>::const_iterator uuid;
for (uuid = audioUuids.begin(); uuid != audioUuids.end(); ++uuid) {
if(m_device.serviceUuids().indexOf(*uuid) > 0) {
// This device supports one of the uuids we have scanned for
if(m_bluetoothSocket != nullptr) {
qDebug() << "*****Connecting... " << *uuid;
m_bluetoothSocket->connectToService(m_device.address(), *uuid);
return;
}
}
}
qDebug() << "*****Cannot connect to service...";
}

如果您不清楚,我愿意发布更多代码。非常感谢任何有关如何像 bluetoothctl 那样使用 Qt 连接到蓝牙的帮助。

最佳答案

不是直接的答案,但您可能想查看 KDE 的 KDEConnect项目。它已经完成了您正在寻找的事情,可能会成为灵感的来源,或者您可以为该项目做出贡献。

关于Qt 如何在 Linux 中以编程方式正确连接到手机(蓝牙 A2DP、AVRCP、HSP、HFP),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52681829/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com