-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding raw accel data access #32
base: master
Are you sure you want to change the base?
Conversation
Data is actually gyro. |
Thank you for the contribution. I was going to merge the changes. Why did you close the request? Was there any problem? |
Turns out the data was gyro, not accel. I'll rename things appropriately
and resubmit.
I'm working on a miband version of this for my son, who has frequent night
terrors: https://9to5mac.com/2020/11/09/nightware/
I've got custom vibrations working too, but I want to figure them out a bit
more before I make a PR for that one.
…On Wed, Jan 20, 2021, 2:09 AM Satkar Dhakal ***@***.***> wrote:
Thank you for the contribution. I was going to merge the changes. Why did
you close the request? Was there any problem?
—
You are receiving this because you modified the open/close state.
Reply to this email directly, view it on GitHub
<#32 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AA756A2C7EXVQEMCZXOMT43S22TVLANCNFSM4V4YB2LA>
.
|
Still working on the PR for miband4, but if you're interested I've put up
my derivative project: https://github.com/NateSchoolfield/blesleep
On Wed, Jan 20, 2021 at 2:20 AM Bartholemew Cubbins <[email protected]>
wrote:
… Turns out the data was gyro, not accel. I'll rename things appropriately
and resubmit.
I'm working on a miband version of this for my son, who has frequent night
terrors: https://9to5mac.com/2020/11/09/nightware/
I've got custom vibrations working too, but I want to figure them out a
bit more before I make a PR for that one.
On Wed, Jan 20, 2021, 2:09 AM Satkar Dhakal ***@***.***>
wrote:
> Thank you for the contribution. I was going to merge the changes. Why did
> you close the request? Was there any problem?
>
> —
> You are receiving this because you modified the open/close state.
> Reply to this email directly, view it on GitHub
> <#32 (comment)>, or
> unsubscribe
> <https://github.com/notifications/unsubscribe-auth/AA756A2C7EXVQEMCZXOMT43S22TVLANCNFSM4V4YB2LA>
> .
>
|
Hi. I recently used this implementation of your gyro data parser and realized that the data we get is actually a combination of gyroscope and accelerometer data. You can test this yourself by moving the smartband really fast, it will give you values well above 1000, and then rotate it slowly, this time the data should remain constant after the rotation stops. I'm not sure if this is an IMU and the magnetometer data is somehow embedded, but it's definitely a sensor fusion. |
Adding capability to start, stop, and handle raw accel data.