eolas/neuron/22c4bb42-86c2-4906-9753-27655e15c1d9/Bluetooth.md
2024-10-30 13:34:40 +00:00

32 lines
413 B
Markdown

---
tags:
- networks
- procedural
- Linux
---
# Bluetooth
## Connect to devices with `bluetoothctl`
```bash
# Start bluetooth first
bluetoothctl power on
```
Then:
```bash
# Launch bluetoothctl
bluetoothctl
```
This initiates `[bluetooth] #` prompt. Then follow this sequence:
```bash
[bluetooth]# agent on
[bluetooth]# default-agent
[bluetooth]# scan on
pair [device_code]
connect [device_code]
```