TIL: Connecting to a device via bluetooth

This commit is contained in:
Asocia 2021-05-20 16:50:14 +03:00
parent d2a9e3d6ae
commit 68ae1bc314

View File

@ -0,0 +1,7 @@
If you want to connect to a device via bluetooth:
```
sudo systemctl enable bluetooth.service
bluetoothctl power on
bluetoothctl devices # to find the mac address of your device
bluetoothctl connect <MAC Address>
```