As the topic says; i need the delta value of android accelerometer sensor (how much did it change since the previous frame?). How can i get this?
Store it:
private Vector3 deltaAccel = 0;
void Update(){
deltaAccel = Input.acceleration - deltaAccel;
}