Back to project page AndroidBleLib.
The source code is released under:
MIT License
If you think the Android project AndroidBleLib listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package io.hearty.ble.lib.data; //from w w w . j a v a 2s . c om import android.bluetooth.BluetoothDevice; /** * Created by ejf3 on 4/15/14. */ public class BleConnect { public final BluetoothDevice device; public BleConnect(BluetoothDevice device) { this.device = device; } }