iMacにインストールされているBluetoothのバージョン(2.1 + EDRまたは4.0)を確認するにはどうすればよいですか?Bluetooth Explorerをダウンロードして調べましたが、「Bluetoothバージョン」と叫ぶ情報が表示されません。また、Bluetoothバージョンへのモデル番号をオンラインでマッピングするデータも見つかりませんでした。
4.0LEプロファイルでいくつかの作業を行おうとしているので質問します。私のMacは「iMac11,2」です。
システムプロファイラー(アップル>このマックについて>詳細>システムレポート>ハードウェア>ブルートゥース)はあなたの「LMPバージョン」を教えてくれます
ここでそのLMPバージョンを検索しますhttp://www.bluetooth.org/Technical/AssignedNumbers/link_manager.htm
重要なものは次のとおりです。
LMPバージョン->BTバージョン
4->Bluetoothコア仕様2.1+EDR
6->Bluetoothコア仕様4.0
1. Click the menu.
2. Select About This Mac.
3. Click on the More Info... button.
4. Click on the System Report... button.
5. Select Bluetooth from the sidebar on the left, underneath "Hardware."
6. Scan down the list of information until you find "LMP Version."
MacにBluetooth4.0が搭載されている場合、LMPバージョンは0x6と表示されます。それより低いものは古いバージョンのBluetoothです
出典: http: //www.imore.com/how-tell-if-your-mac-has-bluetooth-40
「iMac11,2specs」をグーグルで検索して、ハードウェアに関する情報をここで見つけました。結局、Bluetooth 2.1+EDRのようです。(2010年半ばのモデルなので、意味があります。)
BluetoothExplorerでこれを神聖にする方法があるかどうかはまだわかりません。
私のLMPバージョンは10進数ではなく16進数(6ではなく0x6)として報告されるため、別の回答にリストされている1つのライナーは機能しません。ただし、数値6の前のスペースを「。*」に置き換えることで、10進数でも16進数でも機能するように変更できます。すべての場合に機能するはずの変更されたワンライナーは次のとおりです。
system_profiler -detailLevel full SPBluetoothDataType | grep -q "LMP Version:.*6" && echo "Your Mac is supported" || echo "Your Mac is not supported"
一発ギャグ:
system_profiler -detailLevel full SPBluetoothDataType | grep -q "LMP Version: 6" && echo "Your Mac is supported" || echo "Your Mac is not supported"