mirror of
https://github.com/sahinakkaya/til.git
synced 2024-11-10 02:59:37 +01:00
8 lines
217 B
Markdown
8 lines
217 B
Markdown
|
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>
|
||
|
```
|