You can use something like this:
Set platform speed to abs(Touch.Gamma)*10
Or with clamp to limit minimum and maximum speed:
Set platform speed to clamp(abs(Touch.Gamma)*10, 100, 1000)
The more the phone is tilted, the higher the speed will be.
You can use a similar formula for acceleration.
Of course you'll have to experiment a lot to get these numbers right.