legionaryu
About
- Username
- legionaryu
- Joined
- Visits
- 58
- Last Active
- Roles
- Member
Comments
-
Thanks Eric!
-
I restarted the phone and it's working fine now. Thanks!
-
I tested with 0.25g but didn't work like I expected, sometimes it dispatch both negative and positive movement on the same axis. Another question, it's possible to have different thresholds to on different axis? Thanks Eric!
-
Thanks Eric!
-
The motion detection didn't work with this movement, it was the first thing that I tried.I tested with different thresholds, but it was inconsistent.
-
Hi Casey, Do you have a multimeter to check the charge of your battery? If you do, try to check if the battery voltage is around 3.3V. If you don't, try to put a led in the battery and see if it lights up. Hope it helps.
-
Hi Eric, I'm trying to read a simple motion like "move left", using a fixed orientation (Negative Y is left, Positive Y is right, Positive X is forward and Negative X is backward), by reading the accelerometer sampling values and plotting them int…
-
Hi Laura, I'm using the android API. Here is my code: public void onConfigClick(View v){ mdAccel.stopComponents(); mdAccel.disableAllDetection(false); mdLed.stop(true); mdLed.setColorChannel(LED.ColorChannel.GREEN).withHig…
-
If your Metawear has firmware 1.0 or newer, the values that you get are in milli G (from G force). So you can divide by 1000 and multiply by 9.8 (gravity acceleration). But if you have an old firmware you will need to divide 1024 and multiply by you…
-
Thanks, EricThat was it, I was forgetting to call Accel.stopComponents(). I'm having a similar issue with the led, is there something to clear the led pattern other than Led.stop(true)? Even in the MetaWear App, I can't clear the led pattern witho…
-
Thanks Eric!You're a life saver!