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 ww .j a v a2s. c om /** A reading is the information gathered by the device. */ public class Reading { public float hum; public float temp; public float snd_level; public float light; public float prox; public LightColorProx.Color clr; public AccelGyroscope.Accelerometer accel; public AccelGyroscope.Gyroscope gyro; /*public final String timestamp; public final Map<String, String> value; public Reading(String timestamp, Map<String, String> value) { this.timestamp = timestamp; this.value = value; }*/ }