Last active
May 15, 2020 09:49
-
-
Save vicente-gonzalez-ruiz/a330f19fda79d8e4b818204d5224c8f0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Activated device? By default, the RPi has the bluetooth activated. | |
# Activated service? | |
systemctl status bluetooth | |
# Pair a device | |
sudo bluetoothctl | |
scan on | |
pair <the listed device> | |
quit | |
# Disable at boot | |
echo "dtoverlay=pi3-disable-bt" | sudo tee -a /boot/config.txt | |
# Disable systemd service that initializes Bluetooth Modems connected by UART | |
sudo systemctl disable hciuart | |
sudo reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment