Tagged Questions

4
votes
1answer
3k views

Android - SensorManager strange behaviour of getOrientation

I need to retrieve the orientation of my phone. At the moment i wrote this : public void onSensorChanged(SensorEvent event) { switch (event.sensor.getType()){ case Sensor.TYPE_MAGNETIC_FIELD: ...
4
votes
2answers
2k views

Calculating magnetic heading using raw accelerometer and magnetometer data

I have an accelerometer and magnetometer each producing raw X, Y and Z readouts. From this I need to determine the magnetic heading of an object. I'm not that great at trig, but I've put together a ...
3
votes
3answers
3k views

How to determine absolute orientation

I have a xyz accelerometer and magnetometer. Now I want to determine the orientation of the device using both. The problem I see is that depending on the device orientation, I'd need to use the ...
2
votes
1answer
708 views

How to distinguish movement accelerations from oscillations and noise in iphone

Hi everybody on stackoverflow. SHORT VERSION :) I need to use (x,y,z) acceleration values related only to the movement of the iPhone. Just to be clear, think an environment like a car. The iPhone's ...
1
vote
2answers
234 views

iPhone - CMMotionManager properties and iPhone hardware

Do someone know, for each property of CMMotionmanager.deviceMotion and their subproperties, on what kind of hardware they are based on (magnetometer, accelerometer, gyroscope, ...) ? My question is ...
1
vote
2answers
499 views

Get orientation device in the iPhone for Opengl Es

I'm trying to convert the geomagnetic and accelerometer to rotate the camera in opengl ES1, I found some code from android and changed this code for iPhone, actually it is working more or less, but ...
1
vote
2answers
3k views

finding orientation using getRorationMatrix() and getOrientation()

Im trying to get the direction of the vector pointing out of the camera, with respect to magnetic north. I'm under the impression that I need to use the values returned from getOrientation(), but I'm ...
1
vote
2answers
429 views

Basic question about sensor usage

Suppose I have a cellphone with accelerometer and magnetometer, and want to determine its absolute (wrt North/East/South/West) 3d position. Imagine the phone is laid vertically, with the screen ...
0
votes
1answer
149 views

How to obtain an accuracy that is more precise than the four provided accuracy constants in Android when listening to sensors?

When developing a compass in android, it is possible to check for reliability of sensors by inspecting the accuracy parameter passed in onAccuracyChanged(Sensor sensor, int accuracy) This ...
-1
votes
1answer
438 views

Sensing acceleration w.r.t. absolute orientation

I am trying to make a circuit which can sense acceleration in the X, Y, Z axis. (e.g. movement straight down should be in, say, Z axis - not X and Y) However, the circuit may not always be mounted ...