# BluetoothPairing

`import { BluetoothPairing } from "destack:device/binding";`

Bluetooth pairing state.

```ds title="BluetoothPairing"
export enum BluetoothPairing {
    Unknown = 0,
    Unpaired = 1,
    Pairing = 2,
    Paired = 3,
}
```

[language/library/src/device/binding/bluetooth.ds:48:57](https://github.com/destack-sh/destack/blob/main/language/library/src/device/binding/bluetooth.ds#L48-L57)

## Variants

### `Unknown = 0`

Pairing state is unknown.

### `Unpaired = 1`

Device is not paired.

### `Pairing = 2`

Pairing is in progress.

### `Paired = 3`

Device is paired.
