Created
September 19, 2014 14:19
-
-
Save moreguppy/96eab3403369349bd2fe to your computer and use it in GitHub Desktop.
Tilt device for output
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.ondevicemotion = function(event) { | |
var accelerationX = event.accelerationIncludingGravity.x; | |
var accelerationY = event.accelerationIncludingGravity.y; | |
var accelerationZ = event.accelerationIncludingGravity.z; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment