Create bluetooth.md

This commit is contained in:
t. Macleod Sawyer 2021-07-25 18:28:22 -05:00 committed by GitHub
parent 4dbe57a29b
commit 51bf41c44d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

11
bluetooth.md Normal file
View file

@ -0,0 +1,11 @@
# Bluetooth
```bash
hcitool scan # to get the MAC address of your device
bluetoothctl
agent on
scan on # wait for your device's address to show up here
scan off
trust MAC_ADDRESS
pair MAC_ADDRRESS
connect MAC_ADDRESS
```