I bought new laptop Lenovo Z50-70 and have installed Ubuntu 14.04. I want to check whether the Bluetooth shipped is v4 or v3?
I know I should check it from main website or from BIOS, but I am curious to find it from command line. Any help please
I bought new laptop Lenovo Z50-70 and have installed Ubuntu 14.04. I want to check whether the Bluetooth shipped is v4 or v3?
I know I should check it from main website or from BIOS, but I am curious to find it from command line. Any help please
That info can be found with
hciconfig -a
:The HCI Version (0x7) indicates version 4.1
The mapping of HCI version to the bluetooth specification versions are:
While not part of the original question, someone reading this may also wonder how to get the bluetooth version of a bluetooth peripheral (I know I did):
bluetoothctl devices
hcitool info <mac address>
Note that the ouput of the last command doesn't provide the HCI version, but the LMP version. Many other answers on the web to the original question points to the LMP version, not the HCI version. It can be decoded using the same equivalence table. In the answer above, both have the same value. I searched for an explanation of the difference between both, but didn't find it.