neXenio / BLE-Indoor-Positioning

Multilateration using bluetooth beacons
Apache License 2.0
430 stars 129 forks source link

Can find any ibeacon devices #178

Open wangejay opened 3 years ago

wangejay commented 3 years ago

Hi, i did build the apk and install it. however, this app can't find any ibeacon devices. do you have any suggestion? Thanks.

jasirjasir commented 3 years ago

After recognizing the minor ids of your IBeacons, set location (latitude and longitude ) to your beacons in BluetoothClient class

switch (iBeacon.getMinor()) { case 1: { beaconLocation.setLatitude(52.512437); beaconLocation.setLongitude(13.391124); beaconLocation.setAltitude(36); break; }