Android-sensors tag unites questions that are connected with different hardware sensors that are embedded into Android devices (barometer, accelerometer, magnetometer, microphone, camera and so on)

learn more… | top users | synonyms

0
votes
1answer
220 views

Direction of movement using an accelerometer android not working

I am developing an android application to get the direction of a android device. I am using the code below: public class AccelerometerDirection extends Activity implements SensorEventListener { ...
0
votes
0answers
263 views

Android proximity sensor giving false results

First post here, but stackoverflow has solved soooo many problems for me. This one though, I can't seem to figure out. I'm creating an android app that de-increments and TextView value by 1 with ...
3
votes
1answer
571 views

Gyroscope Issues with Device Orientation

I'm getting pitch and roll data from my device's gyroscope using this tutorial: http://www.thousand-thoughts.com/2012/03/android-sensor-fusion-tutorial/ All the readings are extremely accurate ...
0
votes
2answers
143 views

How to shake up and down using Accelerometer in Android?

I tried the following way, but it doesn't work perfectly.. If device is kept in normal way, then also it fires shake event. @Override public void onSensorChanged(SensorEvent event) { // TODO ...
0
votes
2answers
258 views

Sensor List in Samsung GT-I9300

Please help.I am trying to get all the available sensors of a android device.But when i tried to get from 'GT_19300' it shows a list given below "LSM330DLC 3-axis Accelerometer AK8975C ...
2
votes
1answer
204 views

Android : SensorListener

I am building a small application where I need to detect the motion of the device only when its in my hands not when it's in the pocket . Right now, I built the application but the sensor event gets ...
-1
votes
1answer
141 views

Are different types of sensor data got by onSensorChanged of the same quantity?

I mean, for the code below, will _aBuffer.size(), _laBuffer.size(), .... all be the same? I've tried the same code on different devices, one is 'yes', the other is 'no', but i don't know if there is ...
0
votes
0answers
143 views

Galaxy s3 low accel reading CM 10.1

I am working on a program for my Android phone, however I think I may have a problem with either my phone or CM 10.1. When I get the output of my accelerometer when my phone is sitting on my desk the ...
0
votes
1answer
57 views

Stopping Sensor from another Thread

I want to stop Sensor manager activity (unregister it) from another Thread or class after some operations to be performed. How can I do that?
0
votes
0answers
137 views

Keep SensorEventListener during “standby”

I'm building an app that needs to listen to the accelerometer all the time, even when the application is not in foreground. (At this point, I want to clarify that this is not an app for Play Store. ...
3
votes
0answers
77 views

how to track user touch.where it starts from,going to and stopped at on screen:

So far I have come up with the following code: case MotionEvent.ACTION_MOVE: if (x<=430 || y<=80 || y>=490) return true; mPath.quadTo(previousPoint.x, previousPoint.y, ...
0
votes
1answer
127 views

Cannot keep sensor update rate after screen-off

My application needs to collect data from both sensors and GPS, but it seems that after I turn the screen off, the update rate slows down considerably (to 500ms, down from 20ms, or stops completely, ...
1
vote
1answer
282 views

Compass readings on SGS III

My app needs to show the current bearing of the device using its compass. The code I'm using (below) works perfectly fine on my Galaxy Nexus and Galaxy One, but the compass is spinning around wildly ...
0
votes
1answer
98 views

Android Data Collection

I am trying to log android sensor data and then upload it to a server (using Parse.com) on a 24 hour basis (for testing it I will set this to one hour though). My problem is that I know how to write a ...
0
votes
1answer
643 views

Android motion detection

I want to detect motion with Android sensors. For example I hold only bottom of phone and move top of phone to up. I think I need sampling algorithms. I can write a simple application to record ...
5
votes
1answer
269 views

Mechanical safe-cracking using Android audio and orientation sensors

I’m writing an app that helps lock-smiths with safe manipulation, mainly by creating the charts they need on the fly. When trying to gain entry to a safe via manipulation, a detailed analysis of the ...
0
votes
2answers
792 views

What's the conceptual difference between rotation vector sensor and orientation sensor in Android?

Android provides both the rotation vector sensor and the orientation sensor. I know they returns different data, because for vector sensor we have sin of angles, in orientation sensor we have angles. ...
-1
votes
2answers
180 views

How can I check programmatically that user has an interaction with their Android phone?

How can I check programmatically to see if the user has interacted with an Android Phone's touch screen or keypad? Interaction may be a touch or key press event. Will creating a service for this will ...
1
vote
1answer
153 views

Android : Get the maximum value of light sensor

For my app I need to get the maximum value of light sensor. I thought it was the same for all devices which have light sensor (ie SensorManager.LIGHT_SUNLIGHT_MAX) but according to sample tests made ...
8
votes
1answer
359 views

How to detect user presence in android?

I know in Galaxy Samsung SIII it is possible to configure in settings an option to avoid the screen turns off when user is looking into the screen. I think the phone uses the camera or a kind of a ...
0
votes
0answers
54 views

i want to take accelerometer readings in an android

I want to take accelerometer readings in an Android app using cocos2d. But by using the methods given on Android website I could not get that. I'm facing some null exception problem in the following ...
0
votes
1answer
55 views

How to find climbing on stairs using android?

I am doing android application related to pedometer using accelerometer and GPS. I can find user is walking or not based on this formula speed = Math.abs(x+y+z - last_x - last_y - last_z)/ diffTime ...
1
vote
0answers
83 views

libudev vs libsensors for sysfs

I have a temperature sensor on a Linux machine. The temperature sensor information is available in sysfs. I want to get these temperature readings from a C app. I have been browsing the web for a ...
0
votes
2answers
56 views

Orientation change nullifies SensorManager reference

I am making an application that attaches both location and sensor listeners, so that it can then record changes from them into a file. What's strange is that one of the phones using the application ...
1
vote
0answers
132 views

Feed Android sensors with fake data

I would like to ask if there is a way to feed Android sensors with fake data. For example you can feed GPS sensor with mock locations using: $ telnet localhost 5554 Android Console: type 'help' for ...
0
votes
1answer
110 views

Android: Shakelistener error

i have a shake listener as follows public class ShakeListener implements SensorEventListener { private String TAG = ShakeListener.class.getSimpleName(); private static final int ...
1
vote
1answer
513 views

Android accelerometer: SensorManager.DATA_X is deprecated - now what?

I have written an accelerometer app (for learning purposes) using some of the suggestions from StackOverflow. Everything works fine but I get the "SensorManager.DATA_X is deprecated" message as a ...
0
votes
2answers
197 views

Android: Need to apply linear time interpolation on accelerometer data

The raw data retrieved from the Accelerometer sensor (samsung galaxy S) needs to be processed in order to create robust templates for each subject so i need to apply linear time interpolation because ...
0
votes
0answers
90 views

Android: I want to automate the timer for accelerometer

I am making a project where I need to collect some data using accelerometer in Android phone (Samsung Galaxy S) though I have created an app which collects X, Y, Z data by accessing the accelerometer ...
1
vote
1answer
237 views

getting sensor event listener on a separate thread

I'm writing an app that gets the phone rotation from the rotation vector sensor and sends the values over a socket to my PC. I want to implement a SensorEventListener in a way that the callback to ...
1
vote
1answer
431 views

How to transform Android magnetometer readings to the the world's coordinate space?

I am writing some programming on the Android sensors, where I am confused by the readings of magnetometer sensor. Magnetometer reports the magnetic strengths on the three axes of the phone. And I ...
0
votes
1answer
130 views

Linear Acceleration in non zero in steady condition [duplicate]

Possible Duplicate: Android accelerometer accuracy (Inertial navigation) I am an amateur in android programming and currently designing a game where I need to calculate the distance covered ...
0
votes
2answers
117 views

exception with SENSOR_ACCELEROMETER

I want to register a SENSOR_ACCELEROMETER in a service, but it turns out to be a nullexception.Following is my code: asensor = new AccerSensor(context);//the sensoreventlistener Log.i("wogua", ...
1
vote
1answer
257 views

Android 4: starting child activity from sensor event listener: synchronizing fails

I'm trying to start a child activity from the sensor event listener if the smartphone is upside down. The initial code i wrote looked like this: public class MySensorListener implements ...
0
votes
1answer
110 views

Android Sensor Issue

I need to get the data from multiple sensors. I have tried creating a single listener for all the sensors and have tried creating individual listeners for each sensor. Neither method works if more ...
0
votes
0answers
74 views

Default auto brightness offset

I it possible to make an offset to the default auto brightness on a Android device? I know it is an option on a iPhone, so it could be interesting to make it to Android. I know there are a lot of ...
1
vote
2answers
83 views

Android: timestamp for SensorEventListener

when i shake the device iam triggering an intent using sensorevenetlistner the problem is only on little shake the intent is firing, but i want it to fire only when i shake the device 3 times or ...
0
votes
0answers
85 views

Two listeners for same sensor event

I wanted to learn more about using sensors in Android. I made a small application for testing accelerometer. When it detects shake it displays Toast message. I put appropriate listener in a service. ...
0
votes
1answer
118 views

how to use the light sensor

I want to use light sensor to detect the environment of phone changing, then protect the phone from being stolen. But I don't know whether, if the screen is turned off, the sensor still works or not. ...
2
votes
1answer
180 views

How to work with android and SensorSimulator to get sensors values and store them in database

I'm working on an android application that gets sensor values from android phones in order to consume these values by a web service that stores them in a database . I don't have a real device for ...
2
votes
1answer
94 views

Android: onshake with password screen

I am implementing a sensoreventlistener. Whenever the device is shaked I want to provide a password screen. I need some suggestion on how to implement it. What I am doing is I am inflateing password ...
1
vote
1answer
885 views

Getting rotation degree from gyroscope android sensor

Ive searched the internet thin so far. I am trying to develop a problem where i need the degrees of rotation from the phones starting point. To know if the users it moving the phone up or down i am ...
5
votes
3answers
856 views

Compass in Android

I am trying to program a compass with Android using the accelorometer and the magnetic field sensor, now I am wondering how to get the correct angle for my compass. I read in the values of the ...
1
vote
3answers
634 views

Implementing a low-pass filter in Android application - how to determine the value of alpha?

The algorithm to implement a low-pass filter is stated as follows (sourced from Wikipedia): for i from 1 to n y[i] := y[i-1] + α * (x[i] - y[i-1]) where α = T/(tau + T) T, is the period, in ...
0
votes
1answer
76 views

Onshake method : activity should start only once

i am starting a activity with onShake method..each time i shake, the activity is getting started but i want the activity to start only the first time i shake...i have seen the similar question here: ...
0
votes
0answers
54 views

Android Activity: setting number of shakes or timeframe for onshake method

I am starting new activity by using onShake method. Every time i shake the activity is starting. Below is my code public class ShakeListenerTestActivity extends Activity { private ShakeListener ...
1
vote
0answers
270 views

How to get angle change using accelerometer?

I'm trying to get the angle change of an android device around the Z and X axis of the device using the accelerometer. (relative to the angle of the device at the first time the application started or ...
0
votes
1answer
67 views

How to calculate end-points of a line whose orientation aligns with real horizon using Android Sensor data

I'd like to calculate two points that align with the real horizon (presuming the user is holding the device virtually). I'd like the line connecting those 2 points to pass through a center point of ...
1
vote
1answer
68 views

How to make a copy of the Android Sensor SensorEvent Object

I have a sparesArray which I use to store & batch SensorEvents by holding onto each sensor typeId and SensorEvent object until a timer fires. SparseArray<SensorEvent> sensorEventMap = ...
1
vote
1answer
123 views

TYPE_MAGNETIC_FIELD Android No data

I have written some simple code for the Galaxy Tab 7 to show the TYPE_MAGNETIC_FIELD data. Unfortunately this does not provide any data. I can see a TYPE_MAGNETIC_FIELD sensor (have checked it ...

1 2 3 4 5 9