Back to project page android-sdk.
The source code is released under:
MIT License
If you think the Android project android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package io.relayr.model; //w w w . java 2 s .c o m public class AccelGyroscope { public long ts; //":1400776389653, //Timestamp public Accelerometer acc; //"accel":{"x":-0.63,"y":1.02,"z":-0.96}, //%2.2f (max range +-16.0) public Gyroscope gyr; //"gyro":{"x":124.3,"y":12.2,"z":34.1} public static class Accelerometer { public float x; public float y; public float z; } public static class Gyroscope { public float x; public float y; public float z; } }