蓝牙低能耗心率游戏

演示与蓝牙低功耗心率设备/服务交互的游戏。

低功耗蓝牙心率游戏展示了如何使用低功耗蓝牙技术开发低功耗蓝牙应用程序。 Qt Bluetooth API.该应用程序包括扫描蓝牙低功耗设备、连接到设备上的心率服务、写入特征和描述符,以及在心率发生变化时接收来自设备的更新。

该示例介绍了以下 Qt 类:

本应用程序需要一个具有心率服务的低功耗蓝牙设备。另一种方法是使用可编程蓝牙低功耗设备来模拟服务。为此,您也可以使用心率服务器示例。如果没有这样的设备,可以使用演示模式来创建和显示随机值。在命令行中输入--simulator 即可启用该演示模式。

游戏的目标是尽可能提高测得的心率。

有关本示例中使用的 API 的详细说明,请参阅模块文档中的 "使用Qt Bluetooth 低能耗 API"部分。 Qt Bluetooth模块文档中的 "使用 低能耗 API "部分。

如果没有心率设备,蓝牙低功耗扫描仪示例可能更合适。扫描仪示例适用于任何类型的蓝牙低功耗外围设备。

运行示例

要从 Qt Creator,打开Welcome 模式,然后从Examples 中选择示例。更多信息,请参阅Qt Creator: 教程:构建并运行

检查蓝牙权限

在应用程序开始使用蓝牙之前,我们必须检查是否授予了适当的权限:

QBluetoothPermissionpermission{}; permission.setCommunicationModes(QBluetoothPermission::Access);switch(qApp->checkPermission(permission)) {caseQt::PermissionStatus::Undetermined    qApp->requestPermission(permission, this, &DeviceFinder::startSearch);
   return;caseQt::PermissionStatus::Denied: setError(tr("Bluetooth permissions not granted!")); setIcon(IconError);return;caseQt::PermissionStatus::Granted:break;// proceed to search}

视觉之旅

应用程序会搜索附近的所有蓝牙低功耗外围设备。假定远端设备会显示其存在。搜索到的设备会以列表形式显示。请注意,所有找到的蓝牙低功耗设备即使不提供心率服务,也会在列表中列出。

用户选择目标设备后,如果有可用的心率服务,示例会连接到其心率服务。它会自动启用心率值更新通知,并在屏幕上显示当前值。

监测过程结束后,会显示接收到的数值的小结。

示例项目 @ code.qt.io

© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.