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)
2
votes
0answers
540 views
How to collect accelerometer data while the phone is in the idle state
I’m currently working on an application which is supposed to collect accelerometer and microphone data every two seconds. To do so, I started a service (running a timer inside) in order to collect the ...
-3
votes
0answers
11 views
How can I make AppWidget listening SensorListener [closed]
I want to make a widget that can show information? Also, when I shake the android phone it must change information.
0
votes
2answers
42 views
Calling getOrientation() causes crash
I am building my first app and I want to get orientation of my phone when button is pressed and phone doesn't move. User can see view of back camera, point and then press the button and should get the ...
1
vote
1answer
20 views
Android device angle on vertical axis while device stays still
I am developing my first app and for some calculations I need an angle of vertical axis. Basically I am trying to make simple measure tool which would do the calculations on Button click.
I have ...
0
votes
2answers
25 views
RotationVector Sensor ArrayIndexOutOfBounds exception
i was coding an app which get all information about sensors. I have a problem on the rotation vector one. I saw on the official android website that you have 4 values to get for this sensor :
...
0
votes
1answer
19 views
Orientation differences between Galaxy Tab and Transformer
I developed an Augmented Reality application using the front-camera and the min3d library. This application works fine on the Samsung Galaxy Tab 10,1 (first generation), running Android 4.0.4
But ...
6
votes
5answers
4k views
Android devices with pressure sensor
Are there any Android devices out there that have a barometric pressure sensor?
I know that the android.hardware.Sensor class has a TYPE_PRESSURE constant and the getAltitude method in SensorManager ...
0
votes
1answer
22 views
javaNullPointer on display.getRotation()
After having comment all my code to know from where the error was, i found that it came from mDisplay.getRotation().
The general idea of my code is to get the good information from the accelerometer ...
6
votes
4answers
184 views
Android Compass that can Compensate for Tilt and Pitch
I'm trying to make a application on my Android phone (Nexus 4), which will be used in a model boat. I've added low pass filters to filter out the gitter from the sensors.
However, the compass is only ...
-3
votes
0answers
71 views
Linux/Android UINPUT : Injecting Sensor (accelerometer Gyro) events from Application layer to Lower layer
I am posting my queries for the first so please pardon me if I have missed any protocol of writing the post.
I am developing an Android based TV Set top box (STB).
I am planning to give user a ...
4
votes
1answer
146 views
Weird behaviour of the magnetic field measurements while rotating the device
The situation:
I'm trying to create an indoor localisation system with the use of the magnetic field variations inside a building via fingerprinting. As a sensor I'm using my mobile phone a Galaxy ...
2
votes
2answers
71 views
how to detect a metal using magnetic sensor in android phone?
I want to detect a metal using magnetic sensor values. i am getting values continuously like x=30.00 ,y=-20.00 ,z=-13.00
now i want to know how to use these values for detecting any ...
0
votes
1answer
27 views
Can't view Gyro on Galaxy Tab 10
I installed AndroSensor on S3. I can view all sensors.
When I installed this software on Galaxy Tab 10. I can't view Gyro sensor data.
I am working on a project where I need to access gyro and ...
1
vote
3answers
401 views
Inconsistent orientation sensor values on Android for azimuth/yaw and roll
I’m having trouble getting good orientation sensor readings. The sensor readings seemed unreliable, so I tested my code against two free sensor test apps (Sensor Tester (Dicotomica) and Sensor ...
0
votes
1answer
380 views
Sampling Rate of Sensors
Iam devloping an application which changes sampling rates between UI,GAME..during run time.Can any one tell me how to change the rates in run-time(function) and do i need to re-register the sensors ...
0
votes
2answers
24 views
updating Textview based on sensordata
I'm trying to update a textview based on sensorinput - more precise pitch. I have no problem getting the sensor data, converting it to degrees and displaying it in a textview.
The problem is, that I ...
-2
votes
0answers
41 views
how to detect a metal using magnetic sensor values in android [closed]
when i use magnetic sensor, i am getting x,y,z values of magnetic field strength in relation to the device orientation. What I want to get is to convert these values to find a metal is there any ...
1
vote
1answer
81 views
Android Accelerometer Data Class
I have the following class to read data from accelerometer:
public class Accelerometer implements SensorEventListener {
private SensorManager mSensorManager;
private Sensor ...
2
votes
2answers
887 views
Implementing JKalman on Android
There are lots of questions about removing the noise from accelerometer data, other sensor's data, calculating spatio-temporal state, and using a Kalman filter in Android and in other devices.
...
0
votes
0answers
29 views
Changed sensor accuracy reporting in Jelly Bean
Some time ago I wrote a mapping application which incorporates a compass overlay. The basis for the overlay code is the SDK samples in the folder ...
0
votes
0answers
33 views
Android Motion detection
I'm developing an app in which I require the app to be launched when the phone is moved in a particular pattern{ even when the phone is screen locked / pattern locked }.
Say first horizontally, then ...
0
votes
2answers
38 views
Android Tilt Compensated Compass
I'm trying to make a compass app for a project I'm working on that will work while going over rough terrain. I've used the standard TYPE_ACCELEROMETER and TYPE_MAGNETIC_FIELD sensors and it seems to ...
0
votes
1answer
24 views
accessing Android sensor with class extending Dialog
For design reason, I have to implement Android Sensor Specific code into the class with extends Dialog. For example,
public class ImplEndUserGUI extends Dialog implements IEndUserGUI {
public ...
2
votes
1answer
3k views
extract yaw, pitch, and roll from a rotationMatrix
I have a sensor manager that returns a rotationMatrix based on the devices Magnetometer and Accelerometer. I have been trying to also calculate the yaw pitch and roll of the user's device but am ...
1
vote
1answer
40 views
Getting sensor values per second
Is there any way that I can get the sensor reading per second?
what is SENSOR_DELAY_NORMAL rate in seconds?
sm=(SensorManager)getSystemService(SENSOR_SERVICE);
...
0
votes
0answers
15 views
When a SensorEvent is reused by the system, does it allocate a new values array?
I'm using android sensors, and I don't want my code to produce a new object for each sensor event. For now, I'm copying the values contained in the array SensorEvent.values to my own Sample class ...
2
votes
0answers
32 views
Which motion sensor would consume less battery [duplicate]
As long as my app is active, I need to detect movement, meaning, when the device has started to move. I'm requesting updates in a fixed frequency, and the tracking of sensors is working when the ...
1
vote
2answers
1k 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 ...
0
votes
1answer
23 views
Android sensor reading not returning all sensors
I have (or so I thought) cobbled together code that should allow me to take in all sensor data changes and output them to the logs. However, the only sensor I am getting is the light sensor (sensor ...
0
votes
1answer
32 views
Android accelerometer detects only two dimensions changes
I'm learning about accelerometer in android. I'm getting new values when tilting the phone around the green and the blue arraw, but not the red one!
That's actually my problem. And here's the code ...
0
votes
0answers
22 views
Motion detection versus conserving battery
In my app, I have a service that is constantly running in the background, in time ranges the user determines.
In theory, I need to constantly know the user's distance from some destination. So for ...
0
votes
0answers
18 views
Light Sensor collecting inaccurate data
I am collecting data from the light sensor for a certain amount of time:
mSensorManager.registerListener(this, lightSensor, SensorManager.SENSOR_DELAY_FASTEST);
The problem is that the values ...
-7
votes
0answers
65 views
How to sence when my phone is fall in floor by using sensor manager [closed]
i am writing a app for a device which has air bag.the problem is i cant figure out how my phone will sense if it fall in the floor and will open the air bags.is it possible by using sensor manager.
...
1
vote
0answers
23 views
Collecting light intensity data while using camera
I am developing an application which collects light intensity in a background service. In this application, the user is allowed to scan a barcode by opening an intent and the camera is displayed. ...
1
vote
1answer
78 views
How to stop Magnetic sensor from detecting Metals?
I am developing a sensor based application whose main aim is to detect the magnetic field of a electric cable.If there is current flowing in the cable, then it should show some message and when there ...
0
votes
1answer
45 views
Accurate Smartphone Sensors Android
I am working on a project "Smartphone Positioning System using Sensors".
I am going to calculate the position of the device using the sensors gyro, accelerometer, magnetometer, proximity etc. So I ...
1
vote
1answer
428 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 ...
1
vote
0answers
103 views
Virtual Joystick [closed]
I want to use my mobile phone's sensors to control the plane in HAWX 2 on PC. I am used to coding in c# so I am trying to accomplish that in c#. Reading data via adb.exe respectively logcat is working ...
2
votes
0answers
150 views
how can we measure distance between object and android phone camera
I want to calculate the distance between the camera and the recognized object.For this I tried a lot of methods, I tried to find the angle between the object and the camera using accelerometer and ...
2
votes
3answers
2k views
Impossibility to change the rate of the accelerometer
I have to collect accelerometer data from my Android phone, so I have made a little program to do that.
After some tests, I have found that my Nexus S accelerometer's rate is always 50 values per ...
0
votes
1answer
37 views
libGdx and obtuse SensorManager errors in LogCat
I use libGDX for a 2D application. The application runs fine except there are two errors in LogCat:
04-07 15:19:59.579: E/SensorManager(5326): ***[disableSensorLocked]name = ADXL346 Acceleration ...
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 ...
0
votes
0answers
44 views
sensor application testing against sensor emulator canot working properly
I have a problem when I use the following code for using the sensor simulator. The SensorManagerSimulator is correctly initialized but my application crashes when it tries to connect to the simulator.
...
3
votes
1answer
65 views
write at once a second using bufferedwriter on android
I want to write gyro sensor values to file on sdcard.
I prefer to use bufferedwriter but cant use it periodically. how it does?
0
votes
0answers
139 views
How to read Android accelerometer values in a stable and accurate way?
In a my project I am trying to control a car using data obtained through the accelerometer of an Android device. (Left, Right, Forward, Reverse). Even though I have managed to read values from the ...
1
vote
1answer
49 views
Finding sign of acceleration
How can one find if device is accelerating or decelerating from 3-axis accelerometer? sqrt(x^2+y^2+z^2) will give magnitude of acceleration, but to find if it is acceleration or deceleration I guess ...
0
votes
1answer
94 views
Showing Magnetic Field Sensor reading using GraphView in android
Please suggest me how to display magnetic_field sensor's readings in live graph using graphview or any other like achartengine.
I want to display readings on X and Y axis with labels on both axis.
...
0
votes
1answer
42 views
virtual sensor android
I came across a post in google forums which said Kalman filter is implemented in android Virtual sensor( http://code.google.com/p/android/issues/detail?id=17780 post#8) . But I didn't find ...
0
votes
1answer
124 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
2answers
168 views
Android SensorEvent Timestamp constant
I'm currently writing a simple android application to calculate the biases of the devices imu. While doing this I've come across a problem with the value of event.timestamp
Using the code:
float dT ...






