Skip to content

Commit 60f792e

Browse files
authored
Update readme to suggest to install bluez 5.44
1 parent 9a495de commit 60f792e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
The Nuimo Python SDK for Linux allows you to integrate your Nuimo(s) into any type of Linux application or script that can execute Python code.
55

66
## Prerequisites
7-
The Nuimo SDK requires [Python 3.4+](https://www.python.org) and a recent installation of [BlueZ](http://www.bluez.org/). It is tested to work fine with BlueZ 5.43, slightly older versions should however work, too.
7+
The Nuimo SDK requires [Python 3.4+](https://www.python.org) and a recent installation of [BlueZ](http://www.bluez.org/). It is tested to work fine with BlueZ 5.44, slightly older versions should however work, too.
88

99
## Installation
1010
These instructions assume a Debian-based Linux.
@@ -19,17 +19,17 @@ On Linux the [BlueZ](http://www.bluez.org/) library is necessary to access your
1919

2020
### Installing BlueZ from sources
2121

22-
The `bluetoothd` daemon provides BlueZ's D-Bus interfaces that is accessed by the Nuimo SDK to communicate with Nuimo Bluetooth controllers. The following commands download BlueZ 5.43 sources, built them and replace any pre-installed `bluetoothd` daemon. It's not suggested to remove any pre-installed BlueZ package as its deinstallation might remove necessary Bluetooth drivers as well.
22+
The `bluetoothd` daemon provides BlueZ's D-Bus interfaces that is accessed by the Nuimo SDK to communicate with Nuimo Bluetooth controllers. The following commands download BlueZ 5.44 sources, built them and replace any pre-installed `bluetoothd` daemon. It's not suggested to remove any pre-installed BlueZ package as its deinstallation might remove necessary Bluetooth drivers as well.
2323

2424
1. `sudo systemctl stop bluetooth`
2525
2. `sudo apt-get update`
2626
3. `sudo apt-get install libusb-dev libdbus-1-dev libglib2.0-dev libudev-dev libical-dev libreadline-dev libdbus-glib-1-dev unzip`
2727
4. `cd`
2828
5. `mkdir bluez`
2929
6. `cd bluez`
30-
7. `wget http://www.kernel.org/pub/linux/bluetooth/bluez-5.43.tar.xz`
31-
8. `tar xf bluez-5.43.tar.xz`
32-
9. `cd bluez-5.43`
30+
7. `wget http://www.kernel.org/pub/linux/bluetooth/bluez-5.44.tar.xz`
31+
8. `tar xf bluez-5.44.tar.xz`
32+
9. `cd bluez-5.44`
3333
10. `./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --enable-library`
3434
11. `make`
3535
12. `sudo make install`
@@ -38,7 +38,7 @@ The `bluetoothd` daemon provides BlueZ's D-Bus interfaces that is accessed by th
3838
15. `sudo install -v -m644 src/main.conf /etc/bluetooth/main.conf`
3939
16. `sudo systemctl daemon-reload`
4040
17. `sudo systemctl start bluetooth`
41-
18. `bluetoothd --version` # should now print 5.43
41+
18. `bluetoothd --version` # should now print 5.44
4242

4343
Please note that some distributions might use a different directory for system deamons, apply step 13 only as needed.
4444

0 commit comments

Comments
 (0)