Enable Bluetooth on RPI
We had to turn off Bluetooth on the Raspberry Pi images by default because it interfered with the serial interface. If you don't need the UART but need Bluetooth, you can enable it with this guide.
Modify config.txt
First, we need to deactivate UART and re-activate Bluetooth overlays in the config.txt
file. Open an SSH connection to your Pi and open the file with the following command:
Search this part:
and add a #
before enable_uart
and dtoverlay
. After this modification, it should look like this:
To save the file and exit, press CTRL+S
and CTRL+X
.
Enable Bluetooth services
The next step is to re-active the services for Bluetooth. This is done with the following commands:
After a reboot (sudo reboot
), Bluetooth should be enabled and ready to use.
Last updated