Back to project page Sensoria.
The source code is released under:
MIT License
If you think the Android project Sensoria 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 com.grocs.sensors.common; /*w w w .j av a2 s. c o m*/ public interface SensorConstants { // Property constants String PROP_REFRESH_RATE = "interval"; String PROP_PRECISION = "precision"; String PROP_SENSOR_NAME = "sensor_name"; // Defaults constants int DEF_REFRESH_RATE = 200; int DEF_PRECISION = 1; String DEF_REFRESH_RATE_STR = String.valueOf(DEF_REFRESH_RATE); String DEF_PRECISION_STR = String.valueOf(DEF_PRECISION); ; }