blob: a4ba3bde0184eb68ee2638b7a172cfe48dd81dc3 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17
18package android.hardware;
19
Mathias Agopian74cde2c2010-06-16 18:55:46 -070020/**
21 * Class representing a sensor. Use {@link SensorManager#getSensorList} to get
22 * the list of available Sensors.
Mathias Agopian0f791a72010-06-22 21:55:01 -070023 *
24 * @see SensorManager
25 * @see SensorEventListener
26 * @see SensorEvent
27 *
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080028 */
29public class Sensor {
30
Mathias Agopian74cde2c2010-06-16 18:55:46 -070031 /**
32 * A constant describing an accelerometer sensor type. See
Mathias Agopian0f791a72010-06-22 21:55:01 -070033 * {@link android.hardware.SensorEvent#values SensorEvent.values} for more
34 * details.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080035 */
Mathias Agopian74cde2c2010-06-16 18:55:46 -070036 public static final int TYPE_ACCELEROMETER = 1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080037
Mathias Agopian74cde2c2010-06-16 18:55:46 -070038 /**
39 * A constant describing a magnetic field sensor type. See
Mathias Agopian0f791a72010-06-22 21:55:01 -070040 * {@link android.hardware.SensorEvent#values SensorEvent.values} for more
41 * details.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080042 */
43 public static final int TYPE_MAGNETIC_FIELD = 2;
Mathias Agopian74cde2c2010-06-16 18:55:46 -070044
45 /**
46 * A constant describing an orientation sensor type. See
Mathias Agopian0f791a72010-06-22 21:55:01 -070047 * {@link android.hardware.SensorEvent#values SensorEvent.values} for more
48 * details.
Mathias Agopian74cde2c2010-06-16 18:55:46 -070049 *
Mathias Agopian61a44932010-02-26 18:06:26 -080050 * @deprecated use {@link android.hardware.SensorManager#getOrientation
Mathias Agopian74cde2c2010-06-16 18:55:46 -070051 * SensorManager.getOrientation()} instead.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080052 */
Mathias Agopian61a44932010-02-26 18:06:26 -080053 @Deprecated
Mathias Agopian74cde2c2010-06-16 18:55:46 -070054 public static final int TYPE_ORIENTATION = 3;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080055
56 /** A constant describing a gyroscope sensor type */
Mathias Agopian74cde2c2010-06-16 18:55:46 -070057 public static final int TYPE_GYROSCOPE = 4;
58
Mike Lockwood4115c512009-11-03 10:35:43 -050059 /**
Mathias Agopian74cde2c2010-06-16 18:55:46 -070060 * A constant describing an light sensor type. See
Mathias Agopian0f791a72010-06-22 21:55:01 -070061 * {@link android.hardware.SensorEvent#values SensorEvent.values} for more
62 * details.
Mike Lockwood4115c512009-11-03 10:35:43 -050063 */
Mathias Agopian74cde2c2010-06-16 18:55:46 -070064 public static final int TYPE_LIGHT = 5;
Mathias Agopian210fc912010-02-26 13:51:39 -080065
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080066 /** A constant describing a pressure sensor type */
Mathias Agopian74cde2c2010-06-16 18:55:46 -070067 public static final int TYPE_PRESSURE = 6;
Mathias Agopian210fc912010-02-26 13:51:39 -080068
Mathias Agopian462db222011-03-22 18:44:26 -070069 /**
70 * A constant describing a temperature sensor type
71 *
72 * @deprecated use
73 * {@link android.hardware.Sensor#TYPE_AMBIENT_TEMPERATURE
74 * Sensor.TYPE_AMBIENT_TEMPERATURE} instead.
75 */
76 @Deprecated
Mathias Agopian74cde2c2010-06-16 18:55:46 -070077 public static final int TYPE_TEMPERATURE = 7;
Mathias Agopian210fc912010-02-26 13:51:39 -080078
Mike Lockwood4115c512009-11-03 10:35:43 -050079 /**
Mathias Agopian74cde2c2010-06-16 18:55:46 -070080 * A constant describing an proximity sensor type. See
Mathias Agopian0f791a72010-06-22 21:55:01 -070081 * {@link android.hardware.SensorEvent#values SensorEvent.values} for more
82 * details.
Mike Lockwood4115c512009-11-03 10:35:43 -050083 */
Mathias Agopian74cde2c2010-06-16 18:55:46 -070084 public static final int TYPE_PROXIMITY = 8;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080085
Mathias Agopian74cde2c2010-06-16 18:55:46 -070086 /**
Kevin Powellf35fd952010-07-19 19:10:40 -070087 * A constant describing a gravity sensor type.
88 * See {@link android.hardware.SensorEvent SensorEvent}
89 * for more details.
90 */
91 public static final int TYPE_GRAVITY = 9;
92
93 /**
94 * A constant describing a linear acceleration sensor type.
95 * See {@link android.hardware.SensorEvent SensorEvent}
96 * for more details.
97 */
98 public static final int TYPE_LINEAR_ACCELERATION = 10;
99
100 /**
101 * A constant describing a rotation vector sensor type.
102 * See {@link android.hardware.SensorEvent SensorEvent}
103 * for more details.
104 */
105 public static final int TYPE_ROTATION_VECTOR = 11;
106
Mathias Agopian462db222011-03-22 18:44:26 -0700107 /** A constant describing an ambient temperature sensor type */
108 public static final int TYPE_AMBIENT_TEMPERATURE = 13;
109
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800110 /**
111 * A constant describing all sensor types.
112 */
Mathias Agopian74cde2c2010-06-16 18:55:46 -0700113 public static final int TYPE_ALL = -1;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800114
Mathias Agopian74cde2c2010-06-16 18:55:46 -0700115 /* Some of these fields are set only by the native bindings in
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800116 * SensorManager.
117 */
118 private String mName;
119 private String mVendor;
120 private int mVersion;
121 private int mHandle;
122 private int mType;
123 private float mMaxRange;
124 private float mResolution;
125 private float mPower;
Mathias Agopian050b5622010-07-29 16:51:38 -0700126 private int mMinDelay;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800127 private int mLegacyType;
Mathias Agopian74cde2c2010-06-16 18:55:46 -0700128
129
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800130 Sensor() {
131 }
132
133 /**
134 * @return name string of the sensor.
135 */
136 public String getName() {
137 return mName;
138 }
139
140 /**
141 * @return vendor string of this sensor.
142 */
143 public String getVendor() {
144 return mVendor;
145 }
Mathias Agopian74cde2c2010-06-16 18:55:46 -0700146
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800147 /**
148 * @return generic type of this sensor.
149 */
150 public int getType() {
151 return mType;
152 }
Mathias Agopian74cde2c2010-06-16 18:55:46 -0700153
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800154 /**
155 * @return version of the sensor's module.
156 */
157 public int getVersion() {
158 return mVersion;
159 }
Mathias Agopian74cde2c2010-06-16 18:55:46 -0700160
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800161 /**
162 * @return maximum range of the sensor in the sensor's unit.
163 */
164 public float getMaximumRange() {
165 return mMaxRange;
166 }
Mathias Agopian74cde2c2010-06-16 18:55:46 -0700167
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800168 /**
169 * @return resolution of the sensor in the sensor's unit.
170 */
171 public float getResolution() {
172 return mResolution;
173 }
Mathias Agopian74cde2c2010-06-16 18:55:46 -0700174
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800175 /**
176 * @return the power in mA used by this sensor while in use
177 */
178 public float getPower() {
179 return mPower;
180 }
Mathias Agopian74cde2c2010-06-16 18:55:46 -0700181
Mathias Agopian050b5622010-07-29 16:51:38 -0700182 /**
183 * @return the minimum delay allowed between two events in microsecond
184 * or zero if this sensor only returns a value when the data it's measuring
185 * changes.
186 */
187 public int getMinDelay() {
188 return mMinDelay;
189 }
190
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800191 int getHandle() {
192 return mHandle;
193 }
Mathias Agopian74cde2c2010-06-16 18:55:46 -0700194
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800195 void setRange(float max, float res) {
196 mMaxRange = max;
197 mResolution = res;
198 }
Mathias Agopian74cde2c2010-06-16 18:55:46 -0700199
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800200 void setLegacyType(int legacyType) {
201 mLegacyType = legacyType;
202 }
203
204 int getLegacyType() {
205 return mLegacyType;
206 }
207}