我需要在特定BLE设备的范围内通知我的应用。一旦进入范围,我想连接到该设备并向其发送数据。
方法1:
定期BLE扫描以一定间隔(即每30秒)进行一次。但是,这对电池不利。通过仅在设备位置靠近BLE设备的位置时进行扫描(通过Android Geofence API),我可以对此进行一些改进。但是,对于电池来说并不是很好。
方法2:
使用Android Awareness API。这似乎是一个很好的候选人。但是,您似乎被迫向Google注册BLE设备作为BLE信标。有人知道这是否是绝对要求吗?我不想在Google上注册。
答案 0 :(得分: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) { }
}
}
答案 1 :(得分:0)
为什么不将https://developer.android.com/reference/android/bluetooth/BluetoothDevice.html#connectGatt(android.content.Context,%20boolean,%20android.bluetooth.BluetoothGattCallback,%20int,%20int)与autoConnect = true一起使用?收音机的占空比约为4%,因此几乎不消耗任何电池。