Created
February 15, 2020 21:14
-
-
Save mano8/f8337fcd70f80dc86a6ae7b5e5a99789 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
sudo apt-get update | |
sudo apt-get upgrade -y | |
sudo apt-get dist-upgrade -y | |
sudo apt-get install pi-bluetooth | |
You may then need to update the firmware used in the Bluetooth module, which is done by running the following: | |
sudo apt-get install bluez bluez-firmware | |
To fix Raspberry Pi 3 Bluetooth issues, you need to run the following code in your terminal: | |
sudo usermod -G bluetooth -a pi | |
And to check this has worked, type: | |
cat /etc/group | grep bluetooth | |
if ok ---> bluetooth:x:113:pi | |
Then reboot | |
sudo reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment