hi..
I d like to know the meaning of the unit of sensitivity of an accelerometer.. (eg: ± 2.5g)
pl help me out..!! thanks
jjjjshivajjjj 1 year ago
What filtering algorithm did you use?
dl3daz 2 years ago
I've used a simple low-pass-filter.
Something like:
double q=0.04;
double out=0;
while (true) { double in=getFromBMA(); out=(out*(1-q))+(in*q); printf("%f\n",out);
}
thomaspfeiferDotNet 2 years ago
respekt
masterle1988 2 years ago
hi..
I d like to know the meaning of the unit of sensitivity of an accelerometer.. (eg: ± 2.5g)
pl help me out..!! thanks
jjjjshivajjjj 1 year ago
What filtering algorithm did you use?
dl3daz 2 years ago
I've used a simple low-pass-filter.
Something like:
double q=0.04;
double out=0;
while (true) { double in=getFromBMA(); out=(out*(1-q))+(in*q); printf("%f\n",out);
}
thomaspfeiferDotNet 2 years ago
respekt
masterle1988 2 years ago