0

I bought a HM-15 BLE bluetooth module and successefully connected to Arduino. I am able to sent At commands and I would like to use it for scanning for iBeacons and get their major and minor.

Using AT+DISC? I can see the beacon address but I cannot connect to it and now I am stuck on how to retrieve major and minor

Can you help me? Here is the datasheet of the module: http://www.elecrow.com/download/bluetooth40_en.pdf

Thanks

4

2 に答える 2

0

Bluetooth ビーコンは接続を必要とせず、広告から直接識別子を読み取ります。

セクション 19「検出スキャンを開始する」を読み、検出された周辺機器のバイトを読み取ってデコードする方法を学びます。正確なバイト レイアウトは、ビーコンの種類によって異なります。オープン ソース ビーコンの亜種である AltBeacon のバイト レイアウトは、https ://github.com/AltBeacon/spec で確認できます。

独自のビーコン形式をデコードするには、そのビーコン レイアウトが上記のリンクの例とどのように異なるかを知る必要があります。

于 2014-11-04T12:45:34.053 に答える