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
sudo nano /boot/config.txt## Enable Hardware UART for Serial Communication
## This also disables Bluetooth!
enable_uart=1
dtoverlay=disable-bt## Enable Hardware UART for Serial Communication
## This also disables Bluetooth!
#enable_uart=1
#dtoverlay=disable-btEnable Bluetooth services
sudo systemctl enable hciuart.service
sudo systemctl enable bluetooth.serviceLast updated
Was this helpful?
