-2

I have a project that i need to know that if some smartphones are in the same room to implement that i checked several approaches but i found using BLE the best.

The algorithm is that i have a master smartphone that i know is in the room and i want to validate all other smartphones with RSSI that this smartphone get from them. I want to know that does any body have any experience about this approach like that how much the RSSI should be that i be sure that other smartphone is in the same room that master smartphone is?

behnam
  • 60
  • 1
  • 8

1 Answers1

0

Unfortunately, RSSI is not a perfect model for getting the distance, and in your use case this is highly dependent on the structure of the room and architecture of the building. There have been many attempts in the past to get distance data from RSSI and most of them have been fruitless. Please see the links below for more information:-

If you still want to use RSSI to get the distance data, the best mechanism would be a trial-and-error model. Basically, if your project is going to be carried out only in one room then you can run tests there on multiple devices from inside and outside the room, then collect the RSSI data that you get accordingly. You can then write an app that tells you whether the device is in the room or outside based on the data that you have already collected. Please see the links below that can help you get started:-

I hope this helps.

Youssif Saeed
  • 8,246
  • 4
  • 39
  • 62
  • Tnx for your reply but how is that there are some indoor positioning systems using Bluetooth beacons and they are commercialized . what if i want to use this system for short distances like 2 or 3 meters – behnam Aug 02 '19 at 08:28
  • These technologies either rely on the Bluetooth proximity profile or a beaconing application (e.g. iBeacons or Eddystones), and in both these cases it is well known that the accuracy is an issue unless a lot of devices are used or some sort of directional antennas. In fact it is this inaccuracy that led to the most recent Bluetooth release (v5.1) containing the new AoA and AoD features, to address applications requiring higher accuracy for indoor positioning. More information on this can be found here:- https://blog.nordicsemi.com/getconnected/bluetooth-5.1-puts-bluetooth-in-its-place – Youssif Saeed Aug 05 '19 at 07:46