Eric
Do not send private messages with technical questions; they will be discarded. All technical questions must be posted publicly on the forum.
About
- Username
- Eric
- Joined
- Visits
- 9,275
- Last Active
- Roles
- Administrator
Comments
-
@Amasidda said: When you say full scan response packet, are you talking about directly connecting to board and accessing the data? No, I'm talking about a general BLE scan I am trying to scan(access) iBeacon with android app but it'…
-
@Vinay said: I have included an onUnexpectedDisconnect with the board on my android application. Under what circumstances does the function trigger? It works exactly as the name says: https://mbientlab.com/androiddocs/latest/metawearb…
-
Not with the current Android api. You can do either or with ibeacon data but you will need to full scan response packet to use both.
-
Calibrate sensor fusion algorithm and use quarternion.
-
Post the macro setup code that you believe is failing.
-
Code describes what you are doing much better than words. Furthermore, there is no point in us recreating your code.
-
@Oldrich said: @Eric said: * When your device is in this state, do other ble apps work, like "nRF Connect"? Yes. I tried and "Beacon scanner" app works with other device at the same time. Can …
-
Log files are generated for the app, stored in your downloads folder (Downloads\MetaBase\Log). Post one of the log files of the failure.
-
@rlin said: @Eric said: Sorry, it slipped through the cracks. An update to the C++ sdk has been pushed with this change. I saw the fix in C++ SDK, but it's not part of the latest ios 3.2.0 pod. Can it be included in t…
-
@pvandoorn said: It is working pretty well now thanks! There are just 2 (small) things that i did not get from the dotnet tutorial. When i use the multiaccelerometer function, sometimes the program starts with measurements even when one of the se…
-
Looking at the event dump, you can see in the log (event 839 and 840) that the update request is received and processed while it was setting up the event disconnect handler. Add a delay after setting the connection parameters so ensure that the u…
-
Program the charge events with the macro module
-
Don't convert the object to a string.
-
Can you post a minimal function that creates this issue?
-
I am referring to the hardware. The specific TimeoutException you are referring to only happens if the board has allocated all itz resources or the connection is poor and response is dropped.
-
Thanks for pointing that out. I've updated the example code on the .NET Core tutorials and added a link to th GitHub repo.
-
https://mbientlab.com/androiddocs/3/advanced_features.html#data-token Depending on how fast you are sampling data, this may not be a feasible option. You will also need to convert the advertised sensor data to the actual measured value .
-
Monitor the the BT adpater and post a log of it's activity leading up to the error. Also, * Are other boards exhibiting the same behavior? * What other events are you programming? * Is the board in question starting from a clean state?
-
* What version of the iOS SDK are you using now? * Did you see the same issue when using other versions? * Does the same timestamp issue occur if you use the MetaBase app?
-
The tutorial project is on GitHub: https://github.com/mbientlab/MetaWear-Tutorial-CSharp/tree/master/NetCoreExamples Copy/paste the commands / code from the tutorial. You probably mistyped something.
-
@mvela1 said: Thank you, that worked for me. For the record I was able to log fused data and download from it repeatedly in a script. I don't know how to implement that with anonymous logging so I'll try to work with this method. It wor…
-
Thanks for posting your findings; this is really interesting information to have. You're pretty much exploring new territory here though. Most of our testing has been for aggressive connections as there is a demand for streaming lots of data. O…
-
The .NET Core tutorial does not use Visual Studio. Run the project from the command line as shown in the tutorial.
-
* When your device is in this state, do other ble apps work, like "nRF Connect"? * Does restarting the app itself fix the problem? * Can you reliably put your Android device in this state? * what Android device / OS are you using? * Do other A…
-
Hrm, the API has not been thoroughly tested to support logging fused data. Data fusing is intended for streaming as the connection can become unstable from time to time. Since you are logging, you don't have to worry about maintaining a stable co…
-
The tutorials cover how to stream data https://mbientlab.com/tutorials/Swift.html
-
The board state is lost once your script terminates so mbl_mw_logger_lookup_id isn't going to ever return anything. You either have to serialize the board state after setting up the loggers, or use anonymous logging: https://mbientlab.com/tutorial…
-
I tried walked out of range but have not run into any issues. Without debug versions of C code, it will be hard to determine what is actually going on. You can build debug versions of libmetawear and libwarble and use gdb to inspect the backtrac…
-
The> @mvela1 said: This problem occurs for me no matter what script I run when the exception file is in .metawear. I attached a very minimal script where it also occurs. Also, could you please double check that the exception.json file was…
-
@Oldrich said: @Oldrich said: @Eric Hi Eric, thank you for you help. For each of the modules I'm calling mwBoard.getModule(moduleClass). For Light... For Pressure ... …