Different devices have accelerometers manufactured by different manufacturers.
Say I want to categorize vibrations recieved from various devices into one of the following scales :
LOW_MOVEMENT
MEDIUM_MOVEMENT
HIGH_MOVEMENT
How can I devise a scale such that -
LOW_MOVEMENT
of one device is LOW_MOVEMENT
of every other device when subjected to the same vibrations. And so on for MEDIUM_MOVEMENT
and HIGH_MOVEMENT
?
The only data android gives me about the make of the accelerometer is accelerometer resolution and maximum range of accelerometer.
P.S. I plan on normalizing x^2 + y^2 + z^2
under root.