0

我需要我的应用程序在特定 BLE 设备范围内时收到通知。一旦进入范围,我想连接到设备并向其发送数据。

方法 1:
以某个时间间隔(即每 30 秒)定期进行 BLE 扫描。但是,这对电池不利。我可以通过仅在设备位置靠近 BLE 设备位置时(通过 Android Geofence API)进行扫描来改进这一点。但是,对于电池来说仍然不是很好。

方法 2:
使用 Android Awareness API。这似乎是一个很好的候选人。但是,您似乎被迫向 Google 注册您的 BLE 设备作为 BLE 信标。有谁知道这是否是绝对要求?我不想在 Google 上注册它。

4

2 回答 2

0

你为什么不直接使用https://developer.android.com/reference/android/bluetooth/BluetoothDevice.html#connectGatt(android.content.Context,%20boolean,%20android.bluetooth.BluetoothGattCallback,%20int,%20int )与 autoConnect=true?收音机的占空比约为 4%,因此几乎不会消耗任何电池。

于 2019-02-22T22:06:41.823 回答
0

查看 Android Altbeacon库。它可以通过省电功能满足您的需求。

关于方法 1,下面的库中的示例代码。

public class MonitoringActivity extends Activity implements BeaconConsumer {
    protected static final String TAG = "MonitoringActivity";
    private BeaconManager beaconManager;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_ranging);
                beaconManager = BeaconManager.getInstanceForApplication(this);
        // To detect proprietary beacons, you must add a line like below corresponding to your beacon
        // type.  Do a web search for "setBeaconLayout" to get the proper expression.
        // beaconManager.getBeaconParsers().add(new BeaconParser().
        //        setBeaconLayout("m:2-3=beac,i:4-19,i:20-21,i:22-23,p:24-24,d:25-25"));
        beaconManager.bind(this);
    }
    @Override 
    protected void onDestroy() {
        super.onDestroy();
        beaconManager.unbind(this);
    }
    @Override
    public void onBeaconServiceConnect() {
        beaconManager.removeAllMonitorNotifiers();
        beaconManager.addMonitorNotifier(new MonitorNotifier() {
        @Override
        public void didEnterRegion(Region region) {
            Log.i(TAG, "I just saw an beacon for the first time!");        
        }

        @Override
        public void didExitRegion(Region region) {
            Log.i(TAG, "I no longer see an beacon");
        }

        @Override
            public void didDetermineStateForRegion(int state, Region region) {
            Log.i(TAG, "I have just switched from seeing/not seeing beacons: "+state);        
            }
        });

        try {
            beaconManager.startMonitoringBeaconsInRegion(new Region("myMonitoringUniqueId", null, null, null));
        } catch (RemoteException e) {    }
    }

}

于 2019-02-22T21:58:37.213 回答