This guide provides application developers with an introduction to the Android Sensor framework and discusses how to use some of the sensors that are generally available on phones and tablets based on the Intel Atom processor.
Developing Sensor Applications on Intel® Atom™ Processor-Based Android* Phones and Tablets
This guide provides application developers with an introduction to the Android Sensor framework and discusses how to use some of the sensors that are generally available on phones and tablets based on the Intel® Atom™ processor. Among those discussed are the motion, position, and environment sensors. Even though GPS is not strictly categorized as a sensor in the Android framework, this guide discusses GPS-based location services as well. The discussion in this guide is based on Android 4.2, Jelly Bean.
Sensors on Intel® Atom™ Processor-Based Android Phones and Tablets
The Android phones and tablets based on Intel Atom processors can support a wide range of hardware sensors. These sensors are used to detect motion and position changes, and report the ambient environment parameters. The block diagram in Figure 1 shows a possible sensor configuration on a typical Intel Atom processor-based Android device.
Figure 1. Sensors on an Intel® Atom™–based Android system
Based on the data they report, we can categorize Android sensors into the classes and types shown in Table 1.
Motion Sensors
Accelerometer (TYPE_ACCELEROMETER)
Measures a device’s accelerations in m/s2
Motion detection
Gyroscope (TYPE_GYROSCOPE)
Measures a device’s rates of rotation
Rotation detection
Position Sensors
Magnetometer (TYPE_MAGNETIC_FIELD)
Measures the Earth’s geomagnetic field strengths in µT
Compass
Proximity (TYPE_PROXIMITY)
Measures the proximity of an object in cm
Nearby object detection
GPS (not a type of android.hardware.Sensor)
Gets accurate geo-locations of the device
Accurate geo-location detection
Environment Sensors
ALS (TYPE_LIGHT)
Measures the ambient light level in lx
Automatic screen brightness control
Barometer
Measures the ambient air pressure in mbar
Altitude detection
Table 1. Sensor Types Supported by the Android Platform
Android Sensor Framework
The Android sensor framework provides mechanisms to access the sensors and sensor data, with the exception of the GPS, which is accessed through the Android location services. We will discuss this later in this paper. The sensor framework is part of the android.hardware package. Table 2 lists the main classes and interfaces of the sensor framework.
Name
Type
Description
SensorManager
Class
Used to create an instance of the sensor service. Provides various methods for accessing sensors, registering and unregistering sensor event listeners, and so on.
Sensor
Class
Used to create an instance of a specific sensor.
SensorEvent
Class
Used by the system to publish sensor data. It includes the raw sensor data values, the sensor type, the data accuracy, and a timestamp.
SensorEventListener
Interface
Provides callback methods to receive notifications from the SensorManager when the sensor data or the sensor accuracy has changed.
Table 2. The Android Platform Sensor Framework
Obtaining Sensor Configuration
Device manufacturers decide what sensors are available on the device. You must discover which sensors are available at runtime by invoking the sensor framework’s SensorManager getSensorList() method with a parameter “Sensor.TYPE_ALL”. Code Example 1 displays a list of available sensors and the vendor, power, and accuracy information of each sensor.
addItem(myData, sensor.getName(), "Vendor: " sensor.getVendor() ", min. delay: " sensor.getMinDelay() ", power while in use: " sensor.getPower() "mA, maximum range: " sensor.getMaximumRange() ", resolution: " sensor.getResolution());
105
}
106
returnmyData;
107
}
108
}
Code Example 1. A Fragment that Displays the List of Sensors**
Sensor Coordinate System
The sensor framework reports sensor data using a standard 3-axis coordinate system, where X, Y, and Z are represented by values[0], values[1], and values[2] in the SensorEvent object, respectively.
Some sensors, such as light, temperature, proximity, and pressure, return only single values. For these sensors only values[0] in the SensorEvent object are used.
Other sensors report data in the standard 3-axis sensor coordinate system. The following is a list of such sensors:
Accelerometer
Gravity sensor
Gyroscope
Geomagnetic field sensor
The 3-axis sensor coordinate system is defined relative to the screen of the device in its natural (default) orientation. For a phone, the default orientation is portrait; for a tablet, the natural orientation is landscape. When a device is held in its natural orientation, the x axis is horizontal and points to the right, the y axis is vertical and points up, and the z axis points outside of the screen (front) face. Figure 2 shows the sensor coordinate system for a phone, and Figure 3 for a tablet.
Figure 2. The sensor coordinate system for a phone
Figure 3. The sensor coordinate system for a tablet
The most important point regarding the sensor coordinate system is that the sensor’s coordinate system never changes when the device moves or changes its orientation.
Monitoring Sensor Events
The sensor framework reports sensor data with the SensorEvent objects. A class can monitor a specific sensor’s data by implementing the SensorEventListener interface and registering with the SensorManager for the specific sensor. The sensor framework informs the class about the changes in the sensor states through the following two SensorEventListener callback methods implemented by the class:
onAccuracyChanged()
and
onSensorChanged()
Code Example 2 implements the SensorDialog used in the SensorInfoFragment example we discussed in the section “Obtaining Sensor Configuration.”
Code Example 2.A Dialog that Shows the Sensor Values**
Motion Sensors
Motion sensors are used to monitor device movement, such as shake, rotate, swing, or tilt. The accelerometer and gyroscope are two motion sensors available on many tablet and phone devices.
Motion sensors report data using the sensor coordinate system, where the three values in the SensorEvent object, values[0], values[1], and values[2], represent the x-, y-, and z-axis values, respectively.
To understand the motion sensors and apply the data in an application, we need to apply some physics formulas related to force, mass, acceleration, Newton’s laws of motion, and the relationship between several of these entities in time. To learn more about these formulas and relationships, refer to your favorite physics textbooks or public domain sources.
Accelerometer
The accelerometer measures the acceleration applied on the device, and its properties are summarized in Table 3.
Sensor
Type
SensorEvent Data (m/s2)
Description
Accelerometer
TYPE_ACCELEROMETER
values[0] values[1] values[2]
Acceleration along the x axis Acceleration along the y axis Acceleration along the z axis
Table 3. The Accelerometer
The concept for the accelerometer is derived from Newton’s second law of motion:
a = F/m
The acceleration of an object is the result of the net external force applied to the object. The external forces include one that applies to all objects on Earth, gravity. It is proportional to the net force F applied to the object and inversely proportional to the object’s mass m.
In our code, instead of directly using the above equation, we are more concerned about the result of the acceleration during a period of time on the device’s speed and position. The following equation describes the relationship of an object’s velocity v1, its original velocity v0, the acceleration a, and the time t:
v1 = v0 at
To calculate the object’s position displacement s, we use the following equation:s = v0t (1/2)at2
In many cases we start with the condition v0 equal to 0 (before the device starts moving), which simplifies the equation to:s = at2/2
Because of gravity, the gravitational acceleration, represented with the symbol g, is applied to all objects on Earth. Regardless of the object’s mass, gonly depends on the latitude of the object’s location with a value in the range of 9.78 to 9.82 (m/s2). We adopt a conventional standard value for g:g = 9.80665 (m/s2)
Because the accelerometer returns the values using a multidimensional device coordinate system, in our code we can calculate the distances along the x, y, and z axes using the following equations:Sx = AxT2/2
Sy=AyT2/2
Sz=AzT2/2
Where Sx, Sy, and Sz are the displacements on the x axis, y axis, and z axis, respectively, and Ax, Ay, and Az are the accelerations on the x axis, y axis, and z axis, respectively. T is the time of the measurement period.
Code Example 3. Instantiation of an Accelerometer**
Sometimes we don’t use all three dimension data values. Other times we may also need to take the device’s orientation into consideration. For example, for a maze application, we only use the x-axis and y-axis gravitational acceleration to calculate the ball’s moving directions and distances based on the orientation of the device. The following code fragment (Code Example 4) outlines the logic.
//detect the current rotation currentRotation from its “natural orientation”
09
//using the WindowManager
10
switch(currentRotation) {
11
caseSurface.ROTATION_0:
12
accelX = event.values[0];
13
accelY = event.values[1];
14
break;
15
caseSurface.ROTATION_90:
16
accelX = -event.values[0];
17
accelY = event.values[1];
18
break;
19
caseSurface.ROTATION_180:
20
accelX = -event.values[0];
21
accelY = -event.values[1];
22
break;
23
caseSurface.ROTATION_270:
24
accelX = event.values[0];
25
accelY = -event.values[1];
26
break;
27
}
28
//calculate the ball’s moving distances along x, and y using accelX, accelY and the time delta
29
…
30
}
31
}
Code Example 4.Considering the Device Orientation When Using the Accelerometer Data in a Maze Game**
Gyroscope
The gyroscope (or simply gyro) measures the device’s rate of rotation around the x , y, and z axes, as shown in Table 4. The gyroscope data values can be positive or negative. By looking at the origin from a position along the positive half of the axis, if the rotation is counterclockwise around the axis, the value is positive; if the rotation around the axis is clockwise, the value is negative. We can also determine the direction of a gyroscope value using the “right-hand rule,” illustrated in Figure 4.
Figure 4.Using the “right-hand rule” to decide the positive rotation direction
Sensor
Type
SensorEvent Data (rad/s)
Description
Gyroscope
TYPE_GYROSCOPE
values[0] values[1] values[2]
Rotation rate around the x axis Rotation rate around the y axis Rotation rate around the z axis
Table 4. The Gyroscope
Code Example 5 shows how to instantiate a gyroscope.
Many Android tablets support two position sensors: the magnetometer and the proximity sensors. The magnetometer measures the strengths of the Earth’s magnetic field along the x, y, and z axes, while the proximity sensor detects the distance of the device from another object.
Magnetometer
The most important usage of the magnetometer (described in Table 5) in Android systems is to implement the compass.
Sensor
Type
SensorEvent Data (µT)
Description
Magnetometer
TYPE_MAGNETIC_FIELD
values[0] values[1] values[2]
Earth magnetic field strength along the x axis Earth magnetic field strength along the y axis Earth magnetic field strength along the z axis
Table 5. The Magnetometer
Code Example 6 shows how to instantiate a magnetometer.
The proximity sensor provides the distance between the device and another object. The device can use it to detect if the device is being held close to the user (see Table 6), thus determining if the user is on a phone call and turning off the display during the phone call.
Table 6: The Proximity Sensor
Sensor
Type
SensorEvent Data
Description
Proximity
TYPE_PROXIMITY
values[0]
Distance from an object in cm. Some proximity sensors only report a Boolean value to indicate if the object is close enough.
Code Example 7 shows how to instantiate a proximity sensor.
Code Example 7.Instantiation of a Proximity Sensor**
Environment Sensors
The environment sensors detect and report the device’s ambient environment parameters, such as light, temperature, pressure, or humidity. The ambient light sensor (ALS) and the pressure sensor (barometer) are available on many Android tablets.
Ambient Light Sensor (ALS)
The ambient light sensor, described in Table 7, is used by the system to detect the illumination of the surrounding environment and automatically adjust the screen brightness accordingly.
To use sensors in your applications, you should follow these best practices:
Always check the specific sensor’s availability before using it The Android platform does not require the inclusion or exclusion of a specific sensor on the device. Before using a sensor in your application, always first check to see if it is actually available.
Always unregister the sensor listeners If the activity that implements the sensor listener is becoming invisible, or the dialog is stopping, unregister the sensor listener. It can be done via the activity’s onPause() method, or in the dialog’s onStop() method. Otherwise, the sensor will continue acquiring data and as a result drain the battery.
Don’t block the onSensorChanged() method The onSensorChanged() method is frequently called by the system to report the sensor data. You should put as little logic inside this method as possible. Complicated calculations with the sensor data should be moved outside of this method.
Always test your sensor applications on real devices All sensors described in this section are hardware sensors. The Android Emulator may not be capable of simulating a particular sensor’s functions and performance.
GPS and Location
GPS (Global Positioning System) is a satellite-based system that provides accurate geo-location information around the world. GPS is available on many Android phones and tablets. In many perspectives GPS behaves like a position sensor. It can provide accurate location data for applications running on the device. On the Android platform, GPS is not directly managed by the sensor framework. Instead, the Android location service accesses and transfers GPS data to an application through the location listener callbacks.
This section only discusses the GPS and location services from a hardware sensor point of view. The complete location strategies offered by Android 4.2 and Intel Atom processor-based Android phones and tablets is a much larger topic and is outside of the scope of this section.
Android Location Services
Using GPS is not the only way to obtain location information on an Android device. The system can also use Wi-Fi*, cellular networks, or other wireless networks to get the device’s current location. GPS and wireless networks (including Wi-Fi and cellular networks) act as “location providers” for Android location services. Table 9 lists the main classes and interfaces used to access Android location services.
Table 9: The Android Platform Location Service
Name
Type
Description
LocationManager
Class
Used to access location services. Provides various methods for requesting periodic location updates for an application, or sending proximity alerts
LocationProvider
Abstract class
The abstract super class for location providers
Location
Class
Used by the location providers to encapsulate geographical data
LocationListener
Interface
Used to receive location notifications from the LocationManager
Obtaining GPS Location Updates
Similar to the mechanism of using the sensor framework to access sensor data, the application implements several callback methods defined in the LocationListener interface to receive GPS location updates. The LocationManager sends GPS update notifications to the application through these callbacks (the “Don’t call us, we’ll call you” rule).
To access GPS location data in the application, you need to request the fine location access permission in your Android manifest file (Code Example 10).
Code Example 11.A dialog that Displays the GPS Location Data**
GPS and Location Performance and Optimization Guidelines
GPS provides the most accurate location information on the device. On the other hand, as a hardware feature, it consumes extra energy. It also takes time for the GPS to get the first location fix. Here are some guidelines you should follow when developing GPS and location-aware applications:
Consider all available location providers In addition to the GPS_PROVIDER, there is NETWORK_PROVIDER. If your applications only need coarse location data, you may consider using the NETWORK_PROVIDER.
Use the cached locations It takes time for the GPS to get the first location fix. When your application is waiting for the GPS to get an accurate location update, you can first use the locations provided by the LocationManager’s getlastKnownLocation() method to perform part of the work.
Minimize the frequency and duration of location update requests You should request the location update only when needed and promptly de-register from the location manager once you no longer need location updates.