how to check bluetooth version on my laptop Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)How to find out if I'm using Bluetooth 3.0 + HSLaptop bluetooth not workingUbuntu 12.04 Bluetooth problemBluetooth mouse laggingBluetooth problem Lenovo-Z50-70 (Atheros QCWB355)Enable bluetooth on lenovo ideapad y480Ubuntu 14.04 problems with Bluetooth [105b:e065] on Lenovo laptophow to Turn off Bluetooth on wakeup from sleepBluetooth abruptly shuts down in Ubuntu 16.04bluetooth is not visibleBluetooth can't find any device on HP 15-g212nl laptop
Slither Like a Snake
Strange behaviour of Check
Why is there no army of Iron-Mans in the MCU?
Was credit for the black hole image misattributed?
What did Darwin mean by 'squib' here?
Stopping real property loss from eroding embankment
The following signatures were invalid: EXPKEYSIG 1397BC53640DB551
Classification of bundles, Postnikov towers, obstruction theory, local coefficients
What to do with post with dry rot?
Is above average number of years spent on PhD considered a red flag in future academia or industry positions?
How is simplicity better than precision and clarity in prose?
How to rotate it perfectly?
Stop battery usage [Ubuntu 18]
Unable to start mainnet node docker container
Single author papers against my advisor's will?
How to say that you spent the night with someone, you were only sleeping and nothing else?
Can I throw a longsword at someone?
Cauchy Sequence Characterized only By Directly Neighbouring Sequence Members
Can a monk deflect thrown melee weapons?
Passing functions in C++
What are the performance impacts of 'functional' Rust?
Stars Make Stars
Biased dice probability question
Autumning in love
how to check bluetooth version on my laptop
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)How to find out if I'm using Bluetooth 3.0 + HSLaptop bluetooth not workingUbuntu 12.04 Bluetooth problemBluetooth mouse laggingBluetooth problem Lenovo-Z50-70 (Atheros QCWB355)Enable bluetooth on lenovo ideapad y480Ubuntu 14.04 problems with Bluetooth [105b:e065] on Lenovo laptophow to Turn off Bluetooth on wakeup from sleepBluetooth abruptly shuts down in Ubuntu 16.04bluetooth is not visibleBluetooth can't find any device on HP 15-g212nl laptop
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
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
bluetooth
add a comment |
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
bluetooth
see askubuntu.com/questions/114560/…
– Rinzwind
Mar 2 '15 at 12:37
add a comment |
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
bluetooth
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
bluetooth
bluetooth
asked Mar 2 '15 at 12:16
Edward TorvaldsEdward Torvalds
5,19574080
5,19574080
see askubuntu.com/questions/114560/…
– Rinzwind
Mar 2 '15 at 12:37
add a comment |
see askubuntu.com/questions/114560/…
– Rinzwind
Mar 2 '15 at 12:37
see askubuntu.com/questions/114560/…
– Rinzwind
Mar 2 '15 at 12:37
see askubuntu.com/questions/114560/…
– Rinzwind
Mar 2 '15 at 12:37
add a comment |
1 Answer
1
active
oldest
votes
That info can be found with hciconfig -a
:
hci0: Type: BR/EDR Bus: USB
BD Address: 5C:93:A2:A3:59:56 ACL MTU: 1022:8 SCO MTU: 183:5
UP RUNNING PSCAN ISCAN
RX bytes:1146297 acl:195 sco:10904 events:84051 errors:0
TX bytes:72067880 acl:83905 sco:10762 commands:83 errors:0
Features: 0xff 0xfe 0x0d 0xfe 0xd8 0x7f 0x7b 0x8f
Packet type: DM1 DM3 DM5 DH1 DH3 DH5 HV1 HV2 HV3
Link policy: RSWITCH HOLD SNIFF
Link mode: SLAVE ACCEPT
Name: 'ubuntu-0'
Class: 0x6c0100
Service Classes: Rendering, Capturing, Audio, Telephony
Device Class: Computer, Uncategorized
HCI Version: (0x7) Revision: 0x3101
LMP Version: (0x7) Subversion: 0x1
Manufacturer: Atheros Communications, Inc. (69)
The HCI Version (0x7) indicates version 4.1
The mapping of HCI version to the bluetooth specification versions are:
| HCI version | Bluetooth version |
|-------------|-------------------|
| 0 (0x0) | 1.0b |
| 1 (0x1) | 1.1 |
| 2 (0x2) | 1.2 |
| 3 (0x3) | 2.0 |
| 4 (0x4) | 2.1 |
| 5 (0x5) | 3.0 |
| 6 (0x6) | 4.0 |
| 7 (0x7) | 4.1 |
| 8 (0x8) | 4.2 |
| 9 (0x9) | 5.0 |
| 10 (0xa) | 5.1 |
the output is here, i cant find version
– Edward Torvalds
Mar 2 '15 at 13:00
2
Turn the bluetooth on and try the command again. I think my bluetooth has the same ID and I could check it later
– Jeremy31
Mar 2 '15 at 13:30
new output here
– Edward Torvalds
Mar 2 '15 at 14:16
3
see bluetooth.org/en-us/specification/assigned-numbers/… for the related code to the version (though HCI should have told you that too :( )
– Rinzwind
Mar 2 '15 at 14:34
1
Looks like(0x7)
means it is 4.1HCI Version: 4.1 (0x7) Revision: 0x3101
from another post
– Jeremy31
Mar 2 '15 at 14:38
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f591803%2fhow-to-check-bluetooth-version-on-my-laptop%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
That info can be found with hciconfig -a
:
hci0: Type: BR/EDR Bus: USB
BD Address: 5C:93:A2:A3:59:56 ACL MTU: 1022:8 SCO MTU: 183:5
UP RUNNING PSCAN ISCAN
RX bytes:1146297 acl:195 sco:10904 events:84051 errors:0
TX bytes:72067880 acl:83905 sco:10762 commands:83 errors:0
Features: 0xff 0xfe 0x0d 0xfe 0xd8 0x7f 0x7b 0x8f
Packet type: DM1 DM3 DM5 DH1 DH3 DH5 HV1 HV2 HV3
Link policy: RSWITCH HOLD SNIFF
Link mode: SLAVE ACCEPT
Name: 'ubuntu-0'
Class: 0x6c0100
Service Classes: Rendering, Capturing, Audio, Telephony
Device Class: Computer, Uncategorized
HCI Version: (0x7) Revision: 0x3101
LMP Version: (0x7) Subversion: 0x1
Manufacturer: Atheros Communications, Inc. (69)
The HCI Version (0x7) indicates version 4.1
The mapping of HCI version to the bluetooth specification versions are:
| HCI version | Bluetooth version |
|-------------|-------------------|
| 0 (0x0) | 1.0b |
| 1 (0x1) | 1.1 |
| 2 (0x2) | 1.2 |
| 3 (0x3) | 2.0 |
| 4 (0x4) | 2.1 |
| 5 (0x5) | 3.0 |
| 6 (0x6) | 4.0 |
| 7 (0x7) | 4.1 |
| 8 (0x8) | 4.2 |
| 9 (0x9) | 5.0 |
| 10 (0xa) | 5.1 |
the output is here, i cant find version
– Edward Torvalds
Mar 2 '15 at 13:00
2
Turn the bluetooth on and try the command again. I think my bluetooth has the same ID and I could check it later
– Jeremy31
Mar 2 '15 at 13:30
new output here
– Edward Torvalds
Mar 2 '15 at 14:16
3
see bluetooth.org/en-us/specification/assigned-numbers/… for the related code to the version (though HCI should have told you that too :( )
– Rinzwind
Mar 2 '15 at 14:34
1
Looks like(0x7)
means it is 4.1HCI Version: 4.1 (0x7) Revision: 0x3101
from another post
– Jeremy31
Mar 2 '15 at 14:38
add a comment |
That info can be found with hciconfig -a
:
hci0: Type: BR/EDR Bus: USB
BD Address: 5C:93:A2:A3:59:56 ACL MTU: 1022:8 SCO MTU: 183:5
UP RUNNING PSCAN ISCAN
RX bytes:1146297 acl:195 sco:10904 events:84051 errors:0
TX bytes:72067880 acl:83905 sco:10762 commands:83 errors:0
Features: 0xff 0xfe 0x0d 0xfe 0xd8 0x7f 0x7b 0x8f
Packet type: DM1 DM3 DM5 DH1 DH3 DH5 HV1 HV2 HV3
Link policy: RSWITCH HOLD SNIFF
Link mode: SLAVE ACCEPT
Name: 'ubuntu-0'
Class: 0x6c0100
Service Classes: Rendering, Capturing, Audio, Telephony
Device Class: Computer, Uncategorized
HCI Version: (0x7) Revision: 0x3101
LMP Version: (0x7) Subversion: 0x1
Manufacturer: Atheros Communications, Inc. (69)
The HCI Version (0x7) indicates version 4.1
The mapping of HCI version to the bluetooth specification versions are:
| HCI version | Bluetooth version |
|-------------|-------------------|
| 0 (0x0) | 1.0b |
| 1 (0x1) | 1.1 |
| 2 (0x2) | 1.2 |
| 3 (0x3) | 2.0 |
| 4 (0x4) | 2.1 |
| 5 (0x5) | 3.0 |
| 6 (0x6) | 4.0 |
| 7 (0x7) | 4.1 |
| 8 (0x8) | 4.2 |
| 9 (0x9) | 5.0 |
| 10 (0xa) | 5.1 |
the output is here, i cant find version
– Edward Torvalds
Mar 2 '15 at 13:00
2
Turn the bluetooth on and try the command again. I think my bluetooth has the same ID and I could check it later
– Jeremy31
Mar 2 '15 at 13:30
new output here
– Edward Torvalds
Mar 2 '15 at 14:16
3
see bluetooth.org/en-us/specification/assigned-numbers/… for the related code to the version (though HCI should have told you that too :( )
– Rinzwind
Mar 2 '15 at 14:34
1
Looks like(0x7)
means it is 4.1HCI Version: 4.1 (0x7) Revision: 0x3101
from another post
– Jeremy31
Mar 2 '15 at 14:38
add a comment |
That info can be found with hciconfig -a
:
hci0: Type: BR/EDR Bus: USB
BD Address: 5C:93:A2:A3:59:56 ACL MTU: 1022:8 SCO MTU: 183:5
UP RUNNING PSCAN ISCAN
RX bytes:1146297 acl:195 sco:10904 events:84051 errors:0
TX bytes:72067880 acl:83905 sco:10762 commands:83 errors:0
Features: 0xff 0xfe 0x0d 0xfe 0xd8 0x7f 0x7b 0x8f
Packet type: DM1 DM3 DM5 DH1 DH3 DH5 HV1 HV2 HV3
Link policy: RSWITCH HOLD SNIFF
Link mode: SLAVE ACCEPT
Name: 'ubuntu-0'
Class: 0x6c0100
Service Classes: Rendering, Capturing, Audio, Telephony
Device Class: Computer, Uncategorized
HCI Version: (0x7) Revision: 0x3101
LMP Version: (0x7) Subversion: 0x1
Manufacturer: Atheros Communications, Inc. (69)
The HCI Version (0x7) indicates version 4.1
The mapping of HCI version to the bluetooth specification versions are:
| HCI version | Bluetooth version |
|-------------|-------------------|
| 0 (0x0) | 1.0b |
| 1 (0x1) | 1.1 |
| 2 (0x2) | 1.2 |
| 3 (0x3) | 2.0 |
| 4 (0x4) | 2.1 |
| 5 (0x5) | 3.0 |
| 6 (0x6) | 4.0 |
| 7 (0x7) | 4.1 |
| 8 (0x8) | 4.2 |
| 9 (0x9) | 5.0 |
| 10 (0xa) | 5.1 |
That info can be found with hciconfig -a
:
hci0: Type: BR/EDR Bus: USB
BD Address: 5C:93:A2:A3:59:56 ACL MTU: 1022:8 SCO MTU: 183:5
UP RUNNING PSCAN ISCAN
RX bytes:1146297 acl:195 sco:10904 events:84051 errors:0
TX bytes:72067880 acl:83905 sco:10762 commands:83 errors:0
Features: 0xff 0xfe 0x0d 0xfe 0xd8 0x7f 0x7b 0x8f
Packet type: DM1 DM3 DM5 DH1 DH3 DH5 HV1 HV2 HV3
Link policy: RSWITCH HOLD SNIFF
Link mode: SLAVE ACCEPT
Name: 'ubuntu-0'
Class: 0x6c0100
Service Classes: Rendering, Capturing, Audio, Telephony
Device Class: Computer, Uncategorized
HCI Version: (0x7) Revision: 0x3101
LMP Version: (0x7) Subversion: 0x1
Manufacturer: Atheros Communications, Inc. (69)
The HCI Version (0x7) indicates version 4.1
The mapping of HCI version to the bluetooth specification versions are:
| HCI version | Bluetooth version |
|-------------|-------------------|
| 0 (0x0) | 1.0b |
| 1 (0x1) | 1.1 |
| 2 (0x2) | 1.2 |
| 3 (0x3) | 2.0 |
| 4 (0x4) | 2.1 |
| 5 (0x5) | 3.0 |
| 6 (0x6) | 4.0 |
| 7 (0x7) | 4.1 |
| 8 (0x8) | 4.2 |
| 9 (0x9) | 5.0 |
| 10 (0xa) | 5.1 |
edited Apr 11 at 15:04
Patrick
1738
1738
answered Mar 2 '15 at 12:37
Jeremy31Jeremy31
8,58221368
8,58221368
the output is here, i cant find version
– Edward Torvalds
Mar 2 '15 at 13:00
2
Turn the bluetooth on and try the command again. I think my bluetooth has the same ID and I could check it later
– Jeremy31
Mar 2 '15 at 13:30
new output here
– Edward Torvalds
Mar 2 '15 at 14:16
3
see bluetooth.org/en-us/specification/assigned-numbers/… for the related code to the version (though HCI should have told you that too :( )
– Rinzwind
Mar 2 '15 at 14:34
1
Looks like(0x7)
means it is 4.1HCI Version: 4.1 (0x7) Revision: 0x3101
from another post
– Jeremy31
Mar 2 '15 at 14:38
add a comment |
the output is here, i cant find version
– Edward Torvalds
Mar 2 '15 at 13:00
2
Turn the bluetooth on and try the command again. I think my bluetooth has the same ID and I could check it later
– Jeremy31
Mar 2 '15 at 13:30
new output here
– Edward Torvalds
Mar 2 '15 at 14:16
3
see bluetooth.org/en-us/specification/assigned-numbers/… for the related code to the version (though HCI should have told you that too :( )
– Rinzwind
Mar 2 '15 at 14:34
1
Looks like(0x7)
means it is 4.1HCI Version: 4.1 (0x7) Revision: 0x3101
from another post
– Jeremy31
Mar 2 '15 at 14:38
the output is here, i cant find version
– Edward Torvalds
Mar 2 '15 at 13:00
the output is here, i cant find version
– Edward Torvalds
Mar 2 '15 at 13:00
2
2
Turn the bluetooth on and try the command again. I think my bluetooth has the same ID and I could check it later
– Jeremy31
Mar 2 '15 at 13:30
Turn the bluetooth on and try the command again. I think my bluetooth has the same ID and I could check it later
– Jeremy31
Mar 2 '15 at 13:30
new output here
– Edward Torvalds
Mar 2 '15 at 14:16
new output here
– Edward Torvalds
Mar 2 '15 at 14:16
3
3
see bluetooth.org/en-us/specification/assigned-numbers/… for the related code to the version (though HCI should have told you that too :( )
– Rinzwind
Mar 2 '15 at 14:34
see bluetooth.org/en-us/specification/assigned-numbers/… for the related code to the version (though HCI should have told you that too :( )
– Rinzwind
Mar 2 '15 at 14:34
1
1
Looks like
(0x7)
means it is 4.1 HCI Version: 4.1 (0x7) Revision: 0x3101
from another post– Jeremy31
Mar 2 '15 at 14:38
Looks like
(0x7)
means it is 4.1 HCI Version: 4.1 (0x7) Revision: 0x3101
from another post– Jeremy31
Mar 2 '15 at 14:38
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f591803%2fhow-to-check-bluetooth-version-on-my-laptop%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
see askubuntu.com/questions/114560/…
– Rinzwind
Mar 2 '15 at 12:37