BluetoothUUID

有限可用性

此功能不是基线,因为它在一些最常用的浏览器中无法正常工作。

The BluetoothUUID interface of the Web 蓝牙 API provides a way to look up Universally Unique Identifier (UUID) values by name in the registry maintained by the Bluetooth SIG.

描述

UUID 字符串是一个 128 位 UUID,例如 00001818-0000-1000-8000-00805f9b34fb。蓝牙注册表包含由这些 UUID 标识的描述符、服务和特征列表,以及 16 位或 32 位别名和名称。

BluetoothUUID 接口提供用于检索这些 128 位 UUID 的方法。

静态方法

BluetoothUUID.canonicalUUID() 实验性

在传递 16 位或 32 位 UUID 别名时返回 128 位 UUID。

BluetoothUUID.getCharacteristic() 实验性

在传递名称或 16 位或 32 位 UUID 别名时,返回表示注册特征的 128 位 UUID。

BluetoothUUID.getDescriptor() 实验性

在传递名称或 16 位或 32 位 UUID 别名时,返回表示注册描述符的 UUID。

BluetoothUUID.getService() 实验性

在传递名称或 16 位或 32 位 UUID 别名时,返回表示注册服务的 UUID。

示例

在以下示例中,返回表示名为 device_information 的服务的 UUID,并将其打印到控制台。

js
let result = BluetoothUUID.getService("device_information");
console.log(result); // "0000180a-0000-1000-8000-00805f9b34fb"

规范

规范
Web 蓝牙
# bluetoothuuid

浏览器兼容性

BCD 表仅在浏览器中加载