Reading a little into the
C code for the accelerometer i wonder if the method 'filtered_xyz()' does work as expected. Surely, the method name does suggest some sort of filtering. It seems that the C code should return a filtered result over the last four calls to this method. Instead it does return the pure sum of the last four calls to this method.
Dividing the result of this method by 4 (the intended filter depth in the C code: FILT_DEPTH) makes the method result a little more comparable to the pure axis readouts. Then the values are in the usual range of -32 to 31.
Of course i could file a bug report for this, but maybe i do simply miss the real use for this method
