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
-
You're confusing the MetaWear C# SDK with the BLE plugins. The C# SDK works in Unity 2018, barring that serialization bug on UWP which they need to fix (this can be worked around with some minor changes until then). The BLE code, external to the…
-
Yes, the data parsing function is missing an entry for calibration state. Thanks for bring it up. There is no "new functionality". All that specific signal does is provide visibility into the current accuracy states of the 3 IMUs, which should …
-
Contact support (https://mbientlab.com/contact/) and link them to this thread. Unbricking your boards probably will require sending them to our office.
-
Use the latest metawear package (v0.5.0 as of this post). It's highly likely the underlying C++ sdk needs to be tweaked for your specific board, however, we do not have an Artick 710 board nor do we support it. The first thing you should do is c…
-
Are they simply out of power?
-
See this example script: https://github.com/mbientlab/MetaWear-SDK-Python/blob/master/examples/multi_device.py You can search to see how other developers / researchers process data for those metrics. We do not provide any sample code for that k…
-
Can you see the devices with the nRF Connect app?
-
Played around with the noppl version a bit and it turns out the service discovery part of the connect code causes the same hangup. To fix this, I changed the connect code to only retrieve the gatt services rather than discover everything at once; g…
-
mbl_mw_metawearboard_tear_down only removes timers it is aware of; it is meant to be called at the end of a script. You already have the timer pointer so just use m_battery_timer directly instead of looking it up again by id. Given that you're…
-
Create a new thread for your connection issue if you haven't yet resolved it.
-
@rlin said: I think I understand now, but I want to confirm is the execution order to received_progress_update is always after the relative mbl_mw_logger_subscribe callbacks? i.e Progress with entriesLeft == 0 would be called after the last subsc…
-
Wrap your code with code tags so it renders correctly on the forum. See how this unit test sets up an accelerometer stream: https://github.com/mbientlab/MetaWear-SDK-iOS-macOS-tvOS/blob/560f4f98b77a07c31f011b9aa6b2e79388933c8c/MetaWear/Tests/Int…
-
As stated in the README: This is a thin wrapper around the MetaWear C++ API so you will find the C++ documentation and API reference useful. You call the same functions in Python as you do with the C++ library. Look at some of the exa…
-
Wrap your code with the proper tags so it renders correctly on the forum. The example code also tells you when the download has finished. This is implemented in the aforementioned doDownload function. https://github.com/mbientlab/MetaWear-SDK-i…
-
* Enum names are wrong for getting data signals and setting acc/gyro range. You need to use the enum types defined in the bindings file not the C++ names, just like the sample python code. https://github.com/mbientlab/MetaWear-SDK-Cpp/blob/0.16.…
-
See the example code in the StarterProject module: https://github.com/mbientlab/MetaWear-SDK-iOS-macOS-tvOS/blob/master/StarterProject/Shared/DeviceViewController.swift#L47
-
We do not support device pairing.
-
@tpitman said: Adding nuget packages to a unity project. Normal. Net solutions have all the nuget stuff, but unity ones that option is grey. Not sure if it is the same on Windows. Could not find any other way to add a packag…
-
What part of my suggestion is not available on Mac?
-
If you're using Unity 2018, you don't need to import the source code into Unity. As stated in the C# SDK's readme: The SDK is distributed on NuGet as a platform agnostic, .NET Standard 2.0 assembly In other words, either retrieve the …
-
https://mbientlab.com/cppdocs/latest/sensors.html
-
That message can be ignored. Monitor the BT activity and confirm that a connection is indeed failing to be made.
-
The iOS v3 documentation clearly states: This is a thin wrapper around the MetaWear C++ API so you will find the C++ documentation and API reference useful Have you reviewed the C++ documentation? If not, then of course the start proj…
-
Devolved code pushed to the noppl branch: https://github.com/mbientlab/Warble/commit/b0289b8835afc04fa8d93e28e607c79cd3db2e35
-
What do you mean when you say you used your boards with two phones. Please provide more details on how you weer using them. What firmware version was your board using prior to doing a firmware update? Can you connect to the board with the nRF…
-
As I have previously said, we only support developers using MbientLab SDKs. If you are copying and pasting parts of the C# code, your time is probably better spent solving whatever integration issues you have rather than digging through someone els…
-
If you need to make modifications after posting, edit your post. Do not make a new post with the changes. * Try streaming data from the device. See if you can maintain a stream for your normal test duration (2 min in this case). * Try using …
-
The Swift SDK just underwent major breaking changes in v3; the tutorial page currently is for the older v2 releases. The v3 release wraps around the same C++ library as the JavaScript and Python SDKs so the Swift code will follow the same flow as…
-
if it's not succeeding, add an error handling continuation to log the returned error.
-
@tpitman said: I just cloned the git repo for the macOS Metawear SDK. I open the workspace for the StarterProject. I get the same error about the cbindings not being there. The pods file looks correct, but the Cpp stuff is not there. …