nub
About
- Username
- nub
- Joined
- Visits
- 103
- Last Active
- Roles
- Member
Comments
-
Do I really need to chain the addRouteAsyncs? I'm asking this, because I'm trying to use reactive extensions to have an observable stream of the sensor data, which means that I need to create an observable for each sensor. This makes it hard to chai…
-
Even after reducing the frequency of the barometer, I still have the same problem from time to time. Another thing I noticed is that it looks like sometimes only one of the sensors is correctly initialized, that is, either only the accelerometer o…
-
Won't reducing the barometer's standby time increase the frequency?
-
* What Android device and OS are you using? Huawei p9 lite and android 6.0 * What firmware is the board running? * What board do you have? It's a CPRO with the latest firmware * Do you see a similar issue when using the MetaHub app? I…
-
Great, thanks so much for the help and the explanation!
-
So, what does really solve the problem? Is it the use of the Debug.class in the getModule?
-
Is anyone able to spot any glaring mistakes in the way I connect/disconnect or even how I transition between activies?The error still persists and I don't understand what's wrong.
-
Here is the project where I get the described error. I don't thing the problem is related with the android device I use, but with the code itself. It might even be a problem with the way I'm interpreting that some things work on android/java since…
-
I actually only have 2 connectAsync in the scanner activity (in the connect and the reconnect attempt).My scanner activity's onDeviceSelected is pretty much the one you have on here: https://github.com/mbientlab/MetaWear-Tutorial-Android/blob/master…
-
There's nothing else connected to the board.The Logcat displays the usual: connectGatt connectGatt: 0 However it seems to be stuck there (showing those messages multiple times) and never connects. I was following the template app to get an i…
-
First you need to select a platform in which you wish to work. If you have a windows computer a good start might be to play around with a UWP app built with Visual Studio (which uses C#). In the tutorial section you will find guides for iOS, android…
-
Thanks!
-
There is a function which enables you to set the advertising transmitting power. In the Cpp API it's called: mbl_mw_settings_set_tx_power
-
I noticed that, but since the C PRO is the one I have now, I would like to keep "playing" with this one, before investing in a new one. Thanks for the suggestion nonetheless
-
Thanks so much for the answer. As you deduced, those were plots for the raw data, however I was using RMS in order to try and detect each throw using threasholds. I actually ended up using a approach similar to the one you described before ch…
-
Here you have the accelerometer data for two different throws:(link to images on Imgur) I'm wondering how to estimate the start and end of the throw. At naked eye it's obvious where the throw starts and ends, however I don't really know the bes…
-
Is anyone able to help? (Sorry for the bump)
-
Right now, I'm trying to get things like angle of release and flight time. I already stream the raw sensor data and use it to estimate the orientation of the rugby ball. However, I'm trying to figure out a way to estimate the start and end of the…
-
I figured that you must be talking about this: mbl_mw_settings_set_connection_parameters(board, 7.5f, 7.5f, 0, 6000);
-
Thanks for the answer Eric. That being said, I don't really know how to modify the connection parameters as you suggested. Could you give me some pointers?