hardware del bluetooth
en primer lugar, cabe comprobar si el sistema operativo detecta el hardware:
sudo bluetoothctl
[NEW] Controller B8:27:EB:03:01:15 RB3 [default]
desactivar el bluetooth de la raspberry pi 3
nano /boot/config.txt
dtoverlay=pi3-disable-bt
servicio del bluetooth
sudo systemctl status bluetooth.service
bluetooth.service – Bluetooth service
Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled)
Active: inactive (dead)
si el servicio de bluetooth no está activo (esto es, inactive), se lo puede habilitar mediante systemctl
:
sudo systemctl enable bluetooth.service
Synchronizing state for bluetooth.service with sysvinit using update-rc.d…
Executing /usr/sbin/update-rc.d bluetooth defaults
Executing /usr/sbin/update-rc.d bluetooth enable
una vez se ha dispuesto que el servicio bluetooth se activará cada vez que arranque el sistema operativo (esto es, enable
), puede activarse el servicio mediante start
:
sudo systemctl start bluetooth.service
sudo systemctl status bluetooth.service
bluetooth.service – Bluetooth service
Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled)
Active: active (running) since vie 2018-08-03 15:39:50 CEST; 13s ago
fuentes
- información sobre la emisión de audio vía bluetooth en ALSA + Bluez 5 y MPD: ALSA setup with BlueZ 5.
- raspberrry/firmware