Home | History | Annotate | Download | only in hardware

Lines Matching defs:sensor

25  * This class represents a {@link android.hardware.Sensor Sensor} additional information frame,
31 * @see Sensor
38 * The sensor that generated this event. See
41 public final Sensor sensor;
95 * not taken into account by sensor timestamps.
104 * Internal temperature. Sensor hardware device internal temperature.
112 * Vector calibration parameter. Calibration applied to a sensor with 3 elements vector output,
122 * Sensor placement. Describes location and installation angle of the sensor device.
126 * the location and orientation of the sensor. Origin of reference will be the mobile device
127 * geometric sensor. Reference frame is defined as the same as Android sensor frame.
144 * Additional into to sensor hardware. Local geomagnetic field information based on
146 * vector sensor fusion.
156 * Additional info to sensor hardware for accelerometer calibration.
166 * Additional info to sensor hardware indicating dock states of device.
177 * Additional info to sensor hardware. Device is able to use up more power and take more
179 * is virtual reality, when sensor latency need to be carefully controlled.
190 * Additional info to sensor hardware. Device is notified when manually triggered magnetic field
200 * Custom sensor info: array of float values interpreted by sensor based on the type
202 * used to send custom sensor info.
210 Sensor aSensor, int aType, int aSerial, int[] aIntValues, float[] aFloatValues) {
211 sensor = aSensor;
232 public static SensorAdditionalInfo createCustomInfo(Sensor aSensor, int type, float[] data) {
235 "invalid parameter(s): type: " + type + "; sensor: " + aSensor);