BLE-Indoor-Positioning icon indicating copy to clipboard operation
BLE-Indoor-Positioning copied to clipboard

Can find any ibeacon devices

Open wangejay opened this issue 4 years ago • 1 comments

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

wangejay avatar Sep 16 '20 13:09 wangejay

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; }

jasirjasir avatar Sep 17 '20 06:09 jasirjasir