mrsaliwood

About

Username
mrsaliwood
Joined
Visits
61
Last Active
Roles
Member

Comments

  • Okay that makes sense.  Now when I make the following assignment:  modifiedCryingEvent = configuration.cryingEvent.changeOfEvent(byDelta: -3.0, output: .absolute)         modifiedCryingEvent.startLoggingAsync() I get the error:  "Cannot ass…
  • I have tried deleting the app with no change.  My setup: - StarterProject with minimal added functionality for accelerometer logging - iPhone 6s running iOS 10.3.3 After a little debugging, it seems that deactivateAsync is called, but activa…
  • The MetaBase long download no longer hangs.   My modified app does still hang.  The board is still connected to my iOS device.  The app never enters the success or failure handler.  
  • I tried running the device on the MetaBase app again, and it is now hanging on the download there as well.   I logged data for approximately 1 minute at the following configuration settings: Accelerometer (100 Hz) Gyroscope (100 Hz) Light (1 Hz) …
  • The standard test app works, as well as the MetaBase app.   To scale down the app for my current project, I commented out several sections of code for the peripherals not being used.   The peripherals being used are: BMI160 Accelerometer + Gy…
  • ...             }.failure { error in                 self.connectDevice(false)                 hud.hide(animated: true)         }         }
  • @IBAction func stopMonitoringPressed(_ sender: Any) {         startMonitoringButton.isEnabled = true         stopMonitoringButton.isEnabled = false         device.led?.setLEDOnAsync(false, withOptions: 1)                  let hud = MBProgressHU…
  • @IBAction func startMonitoringPressed(_ sender: Any) {         startMonitoringButton.isEnabled = false         stopMonitoringButton.isEnabled = true         device.led?.flashColorAsync(UIColor.white, withIntensity: 1.0)              updateAccel…
  • Its a modified version of the MetaWearApiTest app, but the function to start and stop logging are the same.  See code below:  p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #ffffff} p.p2 {margin: 0.0px 0.0px 0.0px 0.0px; f…