How to use the profile of PROXIMITY PROFILE,IMMEDIATE ALERT SERVICE and Find Me Profile in android 4.3 BLE?

心已入冬 提交于 2019-11-29 03:54:17

问题


I am developing an android application where I have to connect to Bluetooth device on Android 4.3.

The goal of this APP is BLE Anti-loss, it can make the buzzer beep on the remote device and I want to implement the PROXIMITY PROFILE and Find Me PROFILE.

I reference the sample of BluetoothLeGatt in Android API18 and I can scan, connect and discover the services.

I found the UUID of Immediate Alert is 0x1802, but I did not found the UUID for Find Me PROFILE and PROXIMITY PROFILE at Bluetooth Developer portal.

And if I got the UUID, how to use this UUID to make the buzzer beep on the remote device.

Does anyone have an android application sample for Immediate Alert, PROXIMITY PROFILE and Find Me PROFILE?

Or can show me how to use UUID to achieve the required functionality?


回答1:


They are two different things: RSSI and TX_POWER.

TX_POWER is a power that was used to transmit the signal.
RSSI is a power of the signal measured by the receiver.

It is always true: TX_POWER >= RSSI.
(Since you can't measure power greater than it was actually transmitted)

To monitor proximity between two devices (Transmitter & Receiver, or, Peripheral & Central) you should use the following equation:

Proximity Level = TX_POWER - RSSI

The intuition behind this is as follows, the transmitter is always transmit with the same power (TX_POWER), but receiver measure RSSI differently, according to the distance (proximity), when it get closer the RSSI value is getting bigger, and when it moves away the RSSI value is getting smaller.

Good luck!



来源:https://stackoverflow.com/questions/19440707/how-to-use-the-profile-of-proximity-profile-immediate-alert-service-and-find-me

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!