stephen
About
- Username
- stephen
- Joined
- Visits
- 557
- Last Active
- Roles
- Administrator
Comments
-
gulshan, The magneticField property is not yet implemented, the documentation was just updated to reflect this. You will need to use the periodicMagneticField property: https://mbientlab.com/iosdocs/latest/magnetometerbmm150.html Here is the…
-
mangerier, We have updated all our sample apps to use Xcode 8, so I'm not sure if they will correctly open up in Xcode 7 or not. Also, we just released a new SDK which does actually support simulator and macOS builds, so maybe try upgrading to th…
-
Kamran, You will need the "Uses Bluetooth LE Accessories" Background Mode box checked. From there you can use any of the MetaWear API calls as you normally would. The trickiest point is figuring out when/how to trigger the download. Some opt…
-
The updates for ANCS are actually almost done. Should be published in a couple days. Thanks for the interest and let us know if you have any problems!
-
Julian, Yeah Xcode 8 changed code signing in a big way, but I've had no problems to date using there "Automatically manage signing" and choosing my Team name. If you check out the master branch of the Objective-C Starter Project it has been up…
-
Short answer, I just finished updating the sample apps for Xcode 8. Please try them out now and let me know if any problems still exist. It's always a good idea to thoroughly clean after a big update: Clean - Command+Shift+K. Clean Build Fol…
-
Are you only storing references to the devices on the view controller? Since you don't control the lifetime of the view controllers you can't rely on them to keep your data when you switch between them (they will be deleted by iOS). Instead you s…
-
The observeValueForKeyPath function looks good, just making sure it wan't issuing connect/disconnect requests. You will have a trace backwards and see why device2 is nil. Once that is solved, you should have no problems.
-
What you have written should work, there is nothing wrong with calling connectWithHandler on multiple devices. Can double check that the device1 and device2 objects are non-null when this code is executed. Do you receive a callback with error…
-
I would first set a breakpoint on the call to startNotificationsWithHandler and double check that the self.device.accelerometer.dataReadyEvent object does exist. It's possible that either the device object isn't set or the MetaWear isn't connected …
-
The program flow for connecting and streaming from one device is the same for multiple! You will just need to call connectWithHandler: for each device you want to gather data from and then startNotificationsWithHandlerAsync: on the data of interes…
-
Are you programming the same device multiple times without calls to eraseCommandsToRunOnEventAsync? Really the code sample I provided should be contained within the runOnDeviceBoot method of an MBLRestorable object.https://mbientlab.com/iosdocs/lat…
-
You can achieve that functionality by using the following (since I didn't have an external LED, I substituted for the on-device LED in this example) // Every 1000 ms we need to turn on the LED, and we want it to turn on 5 times let leftTurnLEDOnEv…
-
We do have the ability to disable advertisement now, but I'm not sure its the best idea for your use case. Consider that with BLE, the central doing the scanning will never see every ad packet because it only turns on the radio for small bursts of …
-
Here is a relevant snippit: // Whatever should trigger the buzzing MBLEvent *trigger = self.device.mechanicalSwitch.switchUpdateEvent; // Program a timer to fire 3 times, 1000 ms apart MBLTimerEvent *timer = [self.device.timer eventWithPeri…
-
Sorry for the troubles, can I get a little more information about how are you integrating the API? We currently only support integration with CocoaPods, if you have questions on how to use CocoaPods we have a video here: Also, if you download an…
-
It's not completely unexpected for a device to disconnect, especially after some time. The app itself my get terminated by iOS for using too much memory, as the app wasn't really designed to stream large amounts of data for extended periods of time…
-
Check out the latest firebase docs under the google domain, they recently updated docs. I was able to successfully run following these instructions:https://firebase.google.com/docs/ios/setup
-
Check out this function, it might provide some clues: func gpioStartPinChangePressed(sender: AnyObject) { let pin = self.device.gpio!.pins[1] as! MBLGPIOPin // Here pin is an object, it isn't valid to compar…
-
An updated app (2.8.1) is in the Apple review pipeline. Should be out within a week. Thanks for the report! -Stephen
-
We have tracked the issue down to the Nordic DFU iOS library not being completely reverse compatible. We are working on both a short term workaround and solid long term fix. In the meantime, if you have an Android device, that would work too as i…
-
Can you attach your swift code as well? Something might of went askew in the translation.
-
The data is already filtered and ready to go, if you look at it in plain text viewer you should see something like this: Seconds Since Epoc,X-axis (g's),Y-axis (g's),Z-axis (g's) 1464803593.134202,0.003906,0.059082,1.032227 1464803593.15471…
-
Since you can't use bluetooth in the simulator, you are required to run on a physical device. The "missing required architecture x86_64" indicates it's trying to compile for the simulator. Please compile and run on an iOS Device. Thanks!
-
The API is currently capped out at 255. I just took a guess that 50 is a realistic figured, but we can certainly increase it in the sample app. Thanks!
-
*After configuring the parameters, when should applyConnectionParametersAsync be invoked? Any time really, configuring the parameters only sets local variables on the iPhone, applyConnectionParametersAsync is what actually sends the values over th…
-
Xcode 7.3.1 may have fixed this: Fixed the issue that left associated entitlements in an app still enabled after disabling a capability in the Xcode UI. With this fix, Xcode copies entitlements for Wallet, GameCenter (for OS X), Data Protectio…
-
Sorry to hear that! I just pushed a fix to GitHub, it will arrive on the AppStore in about a week.Thanks!
-
I have ran into bugs with ANCS data before, and there are already a couple workarounds in the firmware. I'll have to run some more experiments to make sure the data isn't corrupted. I'll try to have the results early next week. Also, the data on…
-
Thats right, the sample frequency is exposed as a double to make it hardware agnostic. See the following: @discussion The value of this property is capped to minimum and maximum values; the maximum value is determined by the maximum frequency s…