neatle
neatle copied to clipboard
A Neat BluetoothLE library for Android
I am getting this error from Android version 10. Please check this. More details : Brand: Xiaomi Model: Mi A2 Orientation: Portrait RAM free: 795.8 MB Disk free: 7.28 GB...
So far so good with NeatLE but once I've connected to a device I would like to update the signal strength in real time. Is this possible?
Hello, I've been using the library without a problem in devices with Android OS 5.x and 6.x to connect to a custom IoT device. But If I use the library...
So far i could find out is the type when invoking SubscribeCommand.start() always Type.SUBSCRIBE_NOTIFICATION. It looks this feature to make this decision is not implemented?
Hi, I'm using neatle to connect one or more BLE cycling sensors in an Android app. These are long lasting connections and I'm setting the keepAlive flag in a ConnectionMonitor....
The example includes the following note: > Note: An active subscription will keep a ConnectionMonitor with setKeepAlive(false) (the default setting) alive. Can you make it possible to get an access...
Really would just need to expose the underlying `BluetoothGatt` instance so users can in turn call `requestMtu` method: https://developer.android.com/reference/android/bluetooth/BluetoothGatt.html#requestMtu(int)
This warning is given when building an app using proguard: > Warning:si.inova.neatle.operation.OperationBuilder: can't find referenced class si.inova.neatle.operation.SubscribeCommand$Type Adding -dontwarn to your app's proguard-rules file is the temporary solution: `-dontwarn si.inova.neatle.operation.SubscribeCommand$Type`
We need to unify status codes that get return in status listeners (OperationObserver, CommandResult...), and use those status codes in all public calls. Something like: ```java @IntDef({CommandStatus.SERVICE_NOT_FOUND, CommandStatus.CHARACTERISTIC_NOT_FOUND, CommandStatus.DESCRIPTOR_NOT_FOUND}) public...