Stap 3: Configureer Bluetooth Low Energy op start
Oorspronkelijke gebruiksaanwijzing Bluetooth activeren:
rfkill unblock bluetooth killall bluetoothd hciconfig hci0 up
U wilt maken van een bestand in "/ init.d" Bluetooth Low Energy activeren bij het opstarten.
Het bestand heet "ble".
Een map maken
cd /etc mkdir init.d cd init.d
Vervolgens "ble" bestand bewerken.
vi ble
Kopieer het bestand inhoud hieronder naar "ble" bestand.
#! / bin/sh start() {} #!/bin/sh start(){ rfkill unblock bluetooth killall bluetoothd hciconfig hci0 up echo "ble up" } stop(){ hciconfig hci0 down echo "ble down" } case "$1" in start) start ;; stop) stop ;; restart) stop start ;; esac exit 0
Inschakelen "ble" bestand uitvoerbaar:
chmod +x ble
Start het bestand:
/etc/init.d/ble start
Starten van het bestand aan boord van opstarten:
update-rc.d ble defaults