Tagged Questions
0
votes
0answers
92 views
How to rotate a custom compass needle using SensorManager in android?
I have set up a compass needle in my android application which will point to another point in google map. Now I need the compass to point to the same direction when I rotate the device. I had googled ...
4
votes
1answer
1k views
Android accelerometer, sensor usage and power consumption
I have a quick question about the accelerometer in Android devices. Is it always on/active? Given that accelerometer is used to detect the orientation of the device, either landscape or portrait.
In ...
6
votes
4answers
4k views
Compass give me crazy data, is calibration needed or it's the sensor broken?
I'm working with android sensor data. My application use
SensorManager.getRotationMatrixFromVector(
mRotationMatrix , event.values);
and it has been working well until this morning, ...
4
votes
1answer
2k 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 ...
4
votes
1answer
7k 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 ...
4
votes
3answers
4k 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 ...
2
votes
1answer
866 views
How to get azimuth angle at the same time of getting accelerometer measure!ORIENTATION vs ACCELEROMETER
I'm doing this application that works like a pedometer counting steps, but I want it to show orientation for each step.
What i'm doing is registering two event listeners and than for each ...