The android-sensors tag has no wiki summary.
10
votes
4answers
546 views
Where can I find resources and code samples for making use of the signal from an accelerometer?
I would like to be able to write code that takes the signal from an accelerometer to do these things:
Measure acceleration
Detect bumps
Detect impact
Detect sitting/standing
and anything else it can ...
8
votes
2answers
160 views
Acquiring Sensor's data on Android Platforms
To read the sensor's data on an Android platform (i.e. Accelerometer, Gyroscope, Magnetometer, Barometer, GPS ), people over the internet are talking about two ways to acquire such data
Primary way: ...
4
votes
1answer
168 views
Android Sensor CPU Usage
I am trying to read multiple sensors from a Samsung Galaxy Tab GT-P1000 and they seem to be hogging the CPU quite badly relative to the applications I've used.
As a test, I created a short program ...
4
votes
2answers
2k views
How to use Accelerometer to measure distance for Android Application Development
I am just a beginner in the application development industry. I know the accelerometer can be used to return the current acceleration along three axis in meters per second squared (m/s2). But I have ...
4
votes
3answers
1k views
android compass seems unreliable
I have been working on a small compass app the past couple of days, and have gotten the code up and running, but it seems that the compass reading is not accurate. After calibrating both phones, my ...
4
votes
2answers
878 views
Android light sensor not triggering event
When using the light sensor, I have an issue where the onSensorChanged() event is never triggered. The reason is that when the listener is registered, if the lux value remains constant, there's no ...
4
votes
1answer
224 views
Getting lux value from light sensor without onSensorChanged() event?
Just wondering, is there a way to gain the value of the light sensor on an Android phone without waiting for an onSensorChanged() event to occur? To save battery I use registerListener() and ...
4
votes
1answer
361 views
“Custom” sensor event rates don't seem to work with SensorManager.registerListener(SensorEventListener listener, Sensor sensor, int rate)
UPDATED:
I was able to solve the specific problem I was having by introducing a class-scope static counter and just ignoring ever x number of events. But I'd still like to know what I'm doing wrong ...
3
votes
1answer
89 views
How to make all my activities listen to device's shakes?
How to make application listen to device's shakes? I mean not the only activity in the app, but all of them.I used TabActivity and did all the logic of registering/unregistering SensorManager here and ...
3
votes
1answer
259 views
GYROSCOPE does not work after update to 2.3.5
My code used to work on 2.2, and I was able to get the gyroscope data, but after the update to 2.3, it does not work anymore. I also tried on a galaxy player to make sure it's not a hardware issue ...
3
votes
2answers
242 views
Drawing in air with Android phone
I am working on an application to draw in the air with an android phone.
As my phone is moving, thanks to the acceletometer, i retrieve the acceleration on each axis ax, ay, az. What I am interested ...
3
votes
1answer
282 views
Do all Android phones have a minimum set of sensors
I am trying to find out about sensors in Android phones.
Do all/most phones have a basic set of sensors or do I have to look at the individual specifications to find what each supports. The specs I ...
3
votes
2answers
301 views
Why three (redundant?) accelerometer variations in android sensors
In android, we have Sensor.TYPE_GRAVITY, Sensor.TYPE_ACCELEROMETER, Sensor.TYPE_LINEAR_ACCELERATION.
And it is known from android developer forum that,
"The output of the accelerometer, gravity and ...
3
votes
1answer
1k views
Android natural sensor orientation help
I am trying to accomplish Reto Meier's recommended way for keeping the screen orientation from changing. The slides from his talk during Google IO (see #23) can be found in Android Protips: Where to ...
2
votes
1answer
105 views
Reference coordinate system changes between OpenCV, OpenGL and Android Sensor
I am working with OpenCV, Android and OpenGL for an Augmented Reality project. As far as I know the coordintate system in OpenGL is
The OpenCV coordinate system is:
When combining these devices ...
2
votes
3answers
47 views
How to know if a sensor is present on my Android device?
i would like to know if a sensor (for exemple the accellerometer) is present on my Android device.
I am dealing with the SensorManager class.
Here is the code I am using:
sensorMgr = (SensorManager) ...
2
votes
1answer
225 views
How to find MagneticField Strength using magneto meter in android
I want to get Magnetic Field Strength from Magneto Meter of Android Device.
Using the magneto meter of android device I can get the data of magnetic field in the form of x,y & z axis in Micro ...
2
votes
1answer
415 views
How to make an accurate compass on android
my android application shows the direction of a particular place in the world and therefore in needs to get the compass degree.
This is the code I've been using to calculate the degrees:
public void ...
2
votes
5answers
228 views
Android: How do I call a method which is existing in other API Level?
I have application using Android 2.1 which utilize LocationManager to get the altitude. But now, I need to obtain the altitude using SensorManager which requires API Level 9 (2.3).
How can I put the ...
2
votes
1answer
201 views
Using SensorManager to rotate in OpenGL?
I'm building a pretty standard AR app that overlays stuff on the camera and am having trouble working with the SensorManager. I'm basically trying to get the rotation matrix from the sensor manager ...
2
votes
1answer
263 views
Any idea“ERROR/QemuSensors(13441): data__poll: len=-1, errno=9: Bad file number”
I have an ANDROID application which reads sensor values and writes them to a .csv file.The file writing runs on a continous thread.The thread is terminated on a button press.Everything is fine but I ...
2
votes
0answers
290 views
Tracking position of a person inside a building [closed]
How would one track the position of a person in a building? I have an idea but I am unsure of its validity.
Provided wifi nodes are setup in known positions around a building, one could trilaterate ...
2
votes
3answers
236 views
Reach a waypoint using GPS/Compass/Accelerometer - Algorithm?
Good morning everyone,
I currently have a robot with some sensors, like a GPS, an accelerometer and a compass. The thing I would like to do is my robot to reach a GPS coordinate that I enter. I ...
2
votes
1answer
427 views
Android accelerometer millisecond or microsecond?
So I'm getting accelerometer data using HTC EVO. I get values like this for time.
967454610000
967534902000
967613576000
967692434000
The difference between these values is around 80,000,000.
The ...
2
votes
1answer
161 views
Determine building your Android device is pointing at
I have a MapView in which I am drawing buildings on using geopoints. Currently, the app determines the closest building to you by just checking your long/lat and comparing to the buildings; but what I ...
1
vote
0answers
23 views
SensorManager : magnetic field range
I am searching for hours but I cannot find an example or definition for the range of the magnetic field sensor
And ..the links says:
MAGNETIC_FIELD_EARTH_MIN : 30.0
MAGNETIC_FIELD_EARTH_MAX : 60.0
...
1
vote
1answer
29 views
How to obtain quaternion from rotation matrix in Android?
I'm trying to obtain the orientation of an android device, and I need it to be in a quaternion structure (float[4] basically).
What I have now is this:
if (event.sensor.getType() == ...
1
vote
2answers
36 views
Problems getting device orientation data for android
I'm new to the forum and to android development.
I've been trying to get device orientation data but seem to be doing something wrong. I've been following this link's tutorial: ...
1
vote
1answer
53 views
SensorManager.getRotationMatrix gravity parameter or accelerometer parameter values in android?
In Android Documentation is specified the third parameter as
float[] gravity
then is specifies
[0 0 g] = R * gravity (g = magnitude of gravity)
Now, in most of the examples online I can see ...
1
vote
0answers
20 views
How to get rotation around plane different than XY in Android?
getDefaultDisplay().getRotation()
retrieves values like
Surface_ROTATION_0,
Surface_ROTATION_90,
Surface_ROTATION_180,
Surface_ROTATION_270
and so on, and that's around XY plane I guess, Am ...
1
vote
0answers
49 views
Meaning of Sensor.TYPE_GRAVITY in Android
I'm trying to figure out what the meaning of the output from gravity sensors means in Android.
I understand is the gravity applied in X, Y and Z, what I don't understand is the difference with ...
1
vote
1answer
62 views
SensorManager.getOrientation gives very unstable results
I'm getting my phone orientation with help of
SensorManager.getOrientation
but the results are very unstable, something like +-8 degrees, is there some good way fo filtering the results?
this is ...
1
vote
1answer
120 views
yaw pitch roll of -Z axis from the android sensors
The yaw pitch and roll we get from the android's SensorManager.getOrientation() are all for the Y axis of the phone. By this i mean, the yaw and pitch say where the Y-axis points, and the roll is ...
1
vote
2answers
54 views
How to handle a sensor monitoring during screen orientation change?
In my activity, i monitor a sensor, with "onSensorChanged" method.
I start monitoring the sensor when a button in that activity is pushed (in the "onClick" method).
I register and unregister the ...
1
vote
1answer
34 views
How can I write data from then Android sensors to a document that I can access later?
So I'm creating a project on an Android Galaxy Tab 10.1 that uses its accelerometers and gyroscopes. One of the steps here is to collect alot of data and determine its accuracy and drift. To do this I ...
1
vote
1answer
79 views
Adding data row dynamically
I'm using eclipse + android SDK.
I'm trying to create a table with data provided by sensors. I get the information correctly, by i'm having problems to make a table to show it in XML dinamically.
...
1
vote
1answer
48 views
Sensor value interpretation
I am currently trying to understand the sensor values I get from code similar to this.
The yaw/azimuth value seems to be okay. The problem is the pitch value, because I get -90° when the device is ...
1
vote
0answers
110 views
Compass direction is different depending on phone orientation
My augmented reality app needs the compass bearing of the camera view, and there's plenty of examples of getting the direction from the sensormanager.
However I'm finding the resulting value ...
1
vote
2answers
77 views
A method for waiting for sensor data
I have a class which initiates a sensor listener when it is started. This listener writes the latest sensor value to a variable when an event is triggered. The class goes on to do some logic, and at ...
1
vote
2answers
188 views
Android magnetic sensors gives different values of different devices
I am trying to do an analysis which involves interpreting the results from the various sensors of the Android device. Right now I'm analyzing the magnetic field sensor which should tell me (according ...
1
vote
1answer
275 views
Gyroscope included in getOrientation?
I am trying to understand Android sensor management.
Am I right that if I want the gyroscope to be included getting the phone orientation, it is automatically done when I call getOrientation(..) and ...
1
vote
0answers
45 views
Android sensors becoming uncalibrated
I'm having trouble with an augmented reality application I'm writing and specifically the sensors I'm listening to in two different activities.
I'm using the accelerometer and magnetometer to ...
1
vote
0answers
110 views
Use accelerometer in landscape mode
So I'm pretty new to Android programming and my current project involves moving a picture left and right by tilting. It works fine but I can't figure out how to make the accelerometer useful in ...
1
vote
0answers
64 views
What is the correct way to read hardware compass?
There is a compass activity in Android API Demos but it shows correct direction to north only in portrait mode on my Google Nexus One.
I've found the following code somewhere here:
private float[] ...
1
vote
0answers
69 views
Not able to translate device co-ordinate system to world co-ordinate system on android
I have written a small code to convert the device co-ordinates into world co-ordinates by multiplying the Rotation matrix(using getRotationMatrix) and the vector (Ax,Ay,Az) which are the accelerometer ...
1
vote
2answers
147 views
Which Android device has all possible orientation sensors [closed]
Looking for a device that give maximum possible combination of:
Accelerometer
Gyroscope
Rotation matrix
Linear acceleration
Magnetic field
Rotation vector
Or any other sensor which gives any ...
1
vote
1answer
286 views
Android: Amplitude value to Decibel value?
I'm trying to get the decibel of noise being recored from mic on Android phone. I can get amplitude value and looking for the formula to convert it into decibel.
I use following function of ...
1
vote
0answers
86 views
Android: Is there a way to obtain altitude aside from Location.getAltitude()? (I've heard using Sensor)
Is there a way to obtain altitude aside from Location.getAltitude()?
I've heard using Sensor but don't have idea and can't find on net.
UPDATES1
I found SensorManager.getAltitude(float, float) using ...
1
vote
3answers
256 views
Arduino mega queue
I wrote this simple code which reads a length from the Sharp infrared sensor, end presents the average meter in cm (unit) by serial.
When write this code for the Arduino Mega board, the Arduino ...
1
vote
2answers
283 views
How to get x, y, z values from Android Accelerometer sensor on a regular frequency, for instance per 20ms, 40 ms or 60 ms
Im working on an Android project and met the situation below:
Now we are needing the accelerometer value on a regular frequency, such as 20ms, 40ms or 60ms
Now we are SENSOR_DELAY_GAME right now but ...