stephen
About
- Username
- stephen
- Joined
- Visits
- 557
- Last Active
- Roles
- Administrator
Comments
-
Sa0987, thanks for reporting your issue, we will certainly try and make things clearer. Are you saying you would like cocoapod information on the Metawear-SampleiOSApp since you tend to start at that repository as opposed to Metawear-iOSAPI? Also…
-
How long does it typically take for the stream to stall out?Did you time the processing function to confirm it completes in 20 ms? If it takes longer than that you will never be able to keep up on a serial queue. http://stackoverflow.com/questions/…
-
SDK 2.0.0 had an issue when performing an Archive build, it has been fixed with release 2.0.1 available now.
-
We have this fixed in the app source, https://github.com/mbientlab/Metawear-SampleiOSApp. The updates will take a week or more to appear on the App Store however. Thanks!
-
You actually had the correct code snippet from before:MBLGPIOPin *pin0 = self.device.gpio.pins[0]; [pin0 setToDigitalValue:NO]; This will set pin 0 to "Low". In the digital world "NO", "0", "Clear", "false", and "Low" all mean the same thing, …
-
Can you please confirm what version of the app you are running? The prompt to update firmware was removed around April 2015, everything should be working on the latest version (2.2) on the App Store.
-
Thanks for the question, but unfortunately that feature is currently in development and not yet available. The solution will involve setting up a periodic event to trigger the vibrate, then having the ANCS even call "start" on the periodic event. …
-
I would think about the problem in a slightly different way, maybe this fits into your use case. You want lights to come on when you get an ANCS event, then you need a different event to signal that lights should turn off. (say a button press). Th…
-
I imagine it has to deal with the fact you are using 2 different boards with the app, but have it hardcoded to use array[0]. When you call rememberDevice it will be persisted to disk and saved indefinitely. When you used the app with MetaWearR it…
-
Brigid, I was able to successfully filter by App Identifier. Can you please make sure you have the latest firmware on your device and are using the latest MetaWear SDK in your app? I used the App here, https://github.com/mbientlab/ANCS, with a smal…
-
Thanks for the report, we will test locally and update with our findings!
-
Yes, the type (in code) indicates the actual device type on the MetaWear. The MetaWear R has MMA8452Q and the MetaWear RG/RPRO have BMI160. If you get an unexpected type, please make sure the firmware is up to date on the MetaWear and try deleting…
-
Thanks for the workaround! We are currently working to serve all mbientlab subdomains over HTTPS, so this will be fixed in the next API release.
-
You need to keep the strand object around while the app is running. If the stand object is ever deallocated, it's assumed you are done with it and we will turn in off. Try keeping a pointer to the stand object and see if that helps.
-
The config system does not prevent disconnects, we actually want disconnects so you don't have to always have an active BLE connection. The config system is designed to save events on disconnect and then restore events on connect. Can you further…
-
The MetaWear always advertises regardless of iBeacon state. When iBeacon is on it changes the contents of the ad packet, but even with iBeacon off it will still advertise the default MetaWear service. However, we are working on a feature that wil…
-
Hello, thanks for the questions. Let me try and clear some things up. It is correct that you must use a Configuration class (MBLRestorable object) to access log data across disconnects. That class must be set up so that any MBLEvents that you ar…
-
This is a great question, we'll be sure and clarify this within the app on next release. For now, here is the answer: iBeacon's work by broadcasting a unique identifier (UUID), major value, and minor value. For an app to find the iBeacon it'…
-
We currently don't have a simple way to do this. There is an "advanced mode" LED method called setLEDModeWithColorChannel: that you could play with. We have been thinking about ways to optimize the LED interface, but haven't gotten around to im…
-
This is expected behavior, so no you aren't doing anything wrong. The setLEDColor: method clears all the channels and then re-sets them to new values. We certainly can adjust it in future release and have been thinking about ways to optimize the …
-
There are several examples in the sample app of writing values into UILabel's. Check out the startOrientationPressed: function in DeviceDetailViewController.m. You'll see it start listening to event notifications and then assign the result to a UI…
-
We gave ANCS a thorough investigation over the past several weeks and discovered a few issues, both within our software and within the ANCS service itself (issues have been filed with Apple). Everything has been fixed (or worked-around) as of now. …
-
Okay great! Will be interested to see what you come up with.
-
What sort of features are you looking for outside of the automatic header bridging that Xcode provides?
-
Hey @aaronmb7, We are in process of launching a MetaWear complete with a professionally designed cased with exposed button: https://www.kickstarter.com/projects/guardyen/metawear-coin-build-your-own-wearable-sensor-produ/ Also with respect to …
-
Check out the Latest release
-
Correct, but since they are different events, they will have slightly different timestamps, so you would need to account for that as well.
-
You could just create 2 different events (one with MBLPulseOutputWidth, other with MBLPulseOutputPeak) and then subscribe to both.
-
Currently no, but there are some configuration parameters at the hardware level, they just haven't been enabled in the API yet. We should be able to have them in for the next API release (~2 weeks).
-
Thanks for the feedback, I'll update accordingly!