The most simple and naive implementation is to sample the accelerometerdata and use the following formula.
v+=a*dt;
s+=v*dtd+=v*dt;
But this is can give drift over time, read this for explanation why and a better solution: http://gafferongames.com/game-physics/integration-basics/
