Dominic
About
- Username
- Dominic
- Joined
- Visits
- 55
- Last Active
- Roles
- Member
Comments
-
Thank you, I had a quick test and it worked. I'm now doing a live test and I'll let you know if I find any issues.
-
I had a bit of a look through some of the Metawear SDK and I narrowed it down to public Task remoteDisconnectAsync() in BtleService, disconnectTaskSrc never completes. I've temporarily made this a TimedTask so that it will at least time out.
-
Hi EricSomething like this: private final bolts.Continuation onConnected = new bolts.Continuation() { @Override public Void then(Task task) throws Exception { if (task.isCancelled()) { Log.i(TAG, "Connection …
-
I'm seeing something similar, the call to connectAsync() never completes when trying to reconnect (the continuation is never called). In the logs I can see something similar to this:D/BluetoothGatt: connect() - device: EF:E0:C9:D5:67:E1, auto: false…
-
That worked, thank you for sorting so quickly.
-
Brilliant, thank you!
-
Brilliant, thanks!
-
"Implemented feature to pause the logger" Is this a fix for the issue referenced in http://community.mbientlab.com/discussion/1977/switching-between-logging-streaming-depending-on-connection-state#latest please?
-
A quick follow up question on the timestamps for packed values, why are they set to the same time for each value in the pack? Should the timestamps not be the time when the reading was taken (in which case they should all be different), or am I miss…
-
Brilliant, thanks for your help.
-
Thank you for the reply but it's the other way around that I would like things to work: - Stop streaming and start logging when the device disconnects - Stop logging and start streaming when the device reconnects I've tried using the stopLogge…