---
name: "SmartSupportAbility.isBluetoothDevice"
mode: "api"
versionRequirements:
  - { name: "@ray-js/panel-sdk", version: "1.0.0" }
title: "isBluetoothDevice - 是否是 Bluetooth 设备"
summary: "判断当前设备是否为 Bluetooth 设备"
---

## SmartSupportAbility.isBluetoothDevice

> [VERSION] @ray-js/panel-sdk >= 1.0.0

### 描述

判断是否是蓝牙 Bluetooth 设备

### 参数

无


### 返回值

无


### 示例代码

#### 示例

```typescript
if (sdm.support.isBluetoothDevice()) {
  console.log('当前为蓝牙设备');
}
```
