From 68ae1bc31448ed89cc6f91ff5071008dc44b49a1 Mon Sep 17 00:00:00 2001 From: Asocia Date: Thu, 20 May 2021 16:50:14 +0300 Subject: [PATCH] TIL: Connecting to a device via bluetooth --- system/connecting-to-a-device-via-bluetooth.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 system/connecting-to-a-device-via-bluetooth.md diff --git a/system/connecting-to-a-device-via-bluetooth.md b/system/connecting-to-a-device-via-bluetooth.md new file mode 100644 index 0000000..4d85a09 --- /dev/null +++ b/system/connecting-to-a-device-via-bluetooth.md @@ -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 +```