Home | History | Annotate | Download | only in hardware

Lines Matching refs:sensor

20  * This class represents a {@link android.hardware.Sensor Sensor} event and
21 * holds informations such as the sensor's type, the time-stamp, accuracy and of
22 * course the sensor's {@link SensorEvent#values data}.
52 * @see Sensor
60 * which {@link android.hardware.Sensor sensor} type is being monitored (see
64 * <h4>{@link android.hardware.Sensor#TYPE_ACCELEROMETER
65 * Sensor.TYPE_ACCELEROMETER}:</h4> All values are in SI units (m/s^2)
74 * A sensor of this type measures the acceleration applied to the device
76 * sensor itself (<b>Fs</b>) using the relation:
144 * <h4>{@link android.hardware.Sensor#TYPE_MAGNETIC_FIELD
145 * Sensor.TYPE_MAGNETIC_FIELD}:</h4>
149 * <h4>{@link android.hardware.Sensor#TYPE_GYROSCOPE Sensor.TYPE_GYROSCOPE}:
152 * same as is used for the acceleration sensor. Rotation is positive in the
220 * <h4>{@link android.hardware.Sensor#TYPE_LIGHT Sensor.TYPE_LIGHT}:</h4>
225 * <h4>{@link android.hardware.Sensor#TYPE_PRESSURE Sensor.TYPE_PRESSURE}:</h4>
230 * <h4>{@link android.hardware.Sensor#TYPE_PROXIMITY Sensor.TYPE_PROXIMITY}:
234 * <li>values[0]: Proximity sensor distance measured in centimeters </li>
239 * <i>far</i> measurement. In this case, the sensor should report its
240 * {@link android.hardware.Sensor#getMaximumRange() maximum range} value in
244 * <h4>{@link android.hardware.Sensor#TYPE_GRAVITY Sensor.TYPE_GRAVITY}:</h4>
246 * are m/s^2. The coordinate system is the same as is used by the acceleration sensor.</p>
247 * <p><b>Note:</b> When the device is at rest, the output of the gravity sensor should be identical
250 * <h4>{@link android.hardware.Sensor#TYPE_LINEAR_ACCELERATION Sensor.TYPE_LINEAR_ACCELERATION}:</h4>
253 * acceleration sensor.
258 * <h4>{@link android.hardware.Sensor#TYPE_ROTATION_VECTOR Sensor.TYPE_ROTATION_VECTOR}:</h4>
271 * sensor.</p>
300 * <h4>{@link android.hardware.Sensor#TYPE_ORIENTATION
301 * Sensor.TYPE_ORIENTATION}:</h4> All values are angles in degrees.
327 * <b>Note:</b> This sensor type exists for legacy reasons, please use
342 * <h4>{@link android.hardware.Sensor#TYPE_RELATIVE_HUMIDITY
343 * Sensor.TYPE_RELATIVE_HUMIDITY}:</h4>
398 * <h4>{@link android.hardware.Sensor#TYPE_AMBIENT_TEMPERATURE Sensor.TYPE_AMBIENT_TEMPERATURE}:
406 * <h4>{@link android.hardware.Sensor#TYPE_MAGNETIC_FIELD_UNCALIBRATED
407 * Sensor.TYPE_MAGNETIC_FIELD_UNCALIBRATED}:</h4>
408 * Similar to {@link android.hardware.Sensor#TYPE_MAGNETIC_FIELD},
439 * <h4> {@link android.hardware.Sensor#TYPE_GAME_ROTATION_VECTOR}:</h4>
440 * Identical to {@link android.hardware.Sensor#TYPE_ROTATION_VECTOR} except that it
449 * may drift somewhat over time. See {@link android.hardware.Sensor#TYPE_ROTATION_VECTOR}
450 * for a detailed description of the values. This sensor will not have
454 * <h4> {@link android.hardware.Sensor#TYPE_GYROSCOPE_UNCALIBRATED
455 * Sensor.TYPE_GYROSCOPE_UNCALIBRATED}:</h4>
465 * {@link android.hardware.Sensor#TYPE_ACCELEROMETER}
488 * The sensor that generated this event. See
491 public Sensor sensor;