stu68

About

Username
stu68
Joined
Visits
187
Last Active
Roles
Member

Comments

  • I have the logging mostly working now, but when downloading it seems to hang while downloading and never reports nEntries left == 0. Here is sample log entries and code: 09-08 12:10:19.418  13043-13285/com.project.name I/test﹕ Progress: 751/5103/ …
  • Do I need to stop logging before downloading; as in previous API?
  • Here is my loop code: private void accelerometerMe() { if (!isStoppedPress){ //accelModule.start(); //Not sure if stopping and start is still needed logModule.startLogging(); //Not sure if stopping and start is still needed …
  • I moved the route manager stuff into onServiceConnected: @Override public void onServiceConnected(ComponentName name, IBinder service) { ///< Get a reference to the MetaWear service from the binder mwService = (MetaWearBleService.LocalBin…
  • The fromAxes was a typo, but I changed it back for testing. One question with the new API - do I still need to stop the logger and/or acc modules to download the log? In the previous API we had to stop both, download the logs, then start them back…
  • This is for a high frequency application/ project and I need to have the accelerometer at 200Hz. We were having problems getting the data to stream over ble at that rate. I had to develop an algorithm to get periodic samples for a vibration sine wav…
  • I tried it there, but the problem seems to be invoking the LogHandler in the Route Manger. It skips over that every time.
  • private final Runnable downloadLogs= new Runnable() { @Override public void run() { Log.i("AccList1 Size", String.valueOf(accList1.size())); // Stop Logging logModule.stopLogging(); logModule.downloadLog(0.1f,…
  • public void accelerometerMe() { accelModule.routeData().fromAxes().log("accelLogger").commit() .onComplete(new AsyncOperation.CompletionHandler() { @Override public void success(RouteManager result) { …
  • I did get stream working. Here's what I got so far with the attempt at logging. I guess I don't understand what "triggers' the success(RouteManager result). I have everything else working, I am just not clear on this new approach how to get the data…
  • 1.) When I run the FreeFall demo I get NullPointerException on loggingModule.startLogging(true); It happens when clicking on Start. 2.) I got around this in my own app, but I can't seem to get the data after downloading the log. After I download…
  • That freefall sample looks like what I need. I'll give it a try - thank you! Is the video tutorial released yet or a wip?