Tagged Questions

Sensors convert physical stimuli into signals, which can be sampled by other subsystems. They let the rest of the system to collect information about the physical world.

learn more… | top users | synonyms

15
votes
5answers
26k views

How do I find out if the GPS of an Android device is enabled

On an Android Cupake (1.5) enabled device, how do I check and activate the GPS?
12
votes
3answers
5k views

how to calibrate the orientation sensor in android?

im writing an app in google android 2.1 that needs to know which direction (n/w/s/e) the device (htc hero) is facing. the sensor and its listener is working great, but the values i get from the sensor ...
12
votes
17answers
28k views

iPhone Proximity Sensor

Can the iPhone SDK take advantage of the iPhone's proximity sensors? If so, why hasn't anyone taken advantage of them? I could picture a few decent uses. For example, in a racing game, you could put ...
10
votes
4answers
509 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 ...
9
votes
4answers
566 views

How to access CPU's heat sensors?

I am working on software in which I need to access the temperature sensors in the CPU and get control over them. I don't know much hardware interfacing; I just know how to interface with the mouse. I ...
7
votes
1answer
5k views

How do I use the Google Maps API GPS sensor?

All I've been able to find is how to specify the sensor parameter: http://code.google.com/apis/maps/documentation/v3/#SpecifyingSensor But nowhere does it say how to actually USE it. Isn't the ...
7
votes
1answer
5k views

How to Build a Sensor Simulator for Android?

I am building a application for the Android platform and I would like to use the accelerometer. Now, I have found a very nice application for sensor simulation (OpenIntents' SensorSimulator) but, for ...
6
votes
2answers
7k views

Using getRotationMatrix and getOrientation in Android 2.1

I've been having issues with this for far too long. This code should output dx,dy,dz for the accelerometer, and a running total of the dx. It should also output azimuth, pitch, and roll. I've used ...
5
votes
1answer
121 views

Do I have to use the accelerometer in Android to get my photos to orient correctly?

I notice that when you take photos with the native camera app, they come out portrait or landscape (as they should), however, when I take photos in my app using the Camera class, they are always ...
5
votes
1answer
93 views

Correcting for Noise in Multiple Geographic Sensor Readings

Given a list of geocoded locations with an unknown error-value and a database of less noisy public corrections nearer the true location (most of which are reliable), how should I design an algorithm ...
5
votes
3answers
891 views

Android - How to approach fall detection algorithm

I want to be able to feature a fairly simple fall detection algorithm in my application. At the moment in onSensorChanged(), I am getting the absolute value of the current x,x,z values and subtracting ...
5
votes
2answers
4k views

Which Android phones out there do have a gyroscope?

I find it very hard to get any consolidating information about which Android phones do have a gyroscope, or if there are Android phones with this sensor at all. I read about some (especially Samsung) ...
5
votes
4answers
420 views

Is there a J2SE sensor API?

Does anyone know of a "standardized" Java API for working with sensors, and which is closely tied to J2ME as is the case with JSR 256? I'm writing a Java library for interfacing with a sensor network ...
4
votes
1answer
49 views

How to get a direction for a robot from a method in a sensor class?

I am making a program using the LRV(Least recently visited) Algorithm. Basically, I design the algorithm for a robot to traverse through a grid (which is a 2D char array). The robot whilst traversing ...
4
votes
1answer
796 views

Android TYPE_LINEAR_ACCELERATION sensor - what does it show?

I am developing application for car acceleration tracking. I used standard accelerometer, calibrating it in specific position before start, than - considering phone's orientation is not changing - ...
4
votes
1answer
309 views

Using magnetic sensor

I want to get the three coordinates values of the magnetic field measured by the sensor of my phone. For this, I get a handle to the SensorManager by using ...
4
votes
3answers
928 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
1answer
744 views

Strange behavior with android orientation sensor

Currently, I'm trying to rotate 3D Cube using orientation sensor values, using getRotation() method. Some unexpected behaviors are observed when the android device is rotated above some bounds. For ...
4
votes
3answers
1k views

Android Accelerometer filtering?

I saw many examples about filtering Accelermeter's values, to cancel out the gravity (High-pass filter). But most of them were 1st order one, which is said to be simple, but laggy and not the best ...
4
votes
1answer
177 views

Music in my game disturbs accelerometer values. How to solve this?

I'm writing a game where the player tilt the phone to control a character. The problem is: the music(when playing loud) and sound effect(like gun shots) disturbs the accelerometer values. This result ...
4
votes
4answers
325 views

Measuring short distances

What's the best way to wirelessly measure the distance between two objects (computer, smartphones or a specialised device) that are a few meters apart down to a ~10cm accuracy? Is this possible by ...
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
5k views

Need to calculate rotation-vector from Sensor.TYPE_ORIENTATION data

I need to calculate a rotation vector out of the data i get from Sensor.TYPE_ORIENTATION. The sensor data is defined like this: the values have to be recalculated to become a correct 3d position: ...
4
votes
2answers
1k views

Multiple data series in real time plot

I'm kind of new to Python and trying to create a plotting app for values read via RS232 from a sensor. I've managed (after some reading and copying examples online) to get a plot working that updates ...
4
votes
3answers
2k views

Does iPhone allow Light sensors as input?

I was just wondering whether iPhone developement allows light sensors to be used, as buttons or action elements?? I found this link online... Possible to use Light Sensor as a Button? [Archive] - ...
4
votes
2answers
200 views

Educational usages of acceleration sensors

I'm working in a higher school in Austria and I'm currently evaluation how acceleration sensors can be used to deepen fundamental understandings (physics, mathematics, electronics, software ...
3
votes
1answer
81 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
120 views

Detect rotation using iphone's sensors

I'm building an application that detects if the phone has rotated 360 degrees. This rotation will most likely be done in 35 seconds. How do I detect this accurately? I've read some articles about ...
3
votes
1answer
102 views

Why I need to shake my phone to get the correct “Compass-Data”?

I have a little problem with the "Compass". I want to show on the screen in which direction I am looking with the camera. For that I have a CameraView and an Activity in running in landscape mode. ...
3
votes
3answers
75 views

How can I get a sensor's name?

I want to programatically get a Sensor's name. Say the name of the ambient light sensor. How can I get its name?
3
votes
1answer
145 views

Custom sensitivity settings on gyroscope through android api, or kernel?

I own a samsung galaxy tab 10.1 4g lte-- and am starting to play with the sensors onboard. I looked up the mems gyro on board and found that (you can see for yourself on pg 9) that there are 4 ...
3
votes
4answers
78 views

synchronize and merge messaging/data flow

It is about very common sensor data processing problem. To synchronize and merge sensor data from different sources, I would like to implement it in Java without too complicated 3rd libs or ...
3
votes
1answer
196 views

Is there a stable way to detect shaking event?

I've tried to detect shaking event using accelerometer. I've found that when I give a contiuous shake to the phone, the value difference of the acceleration is quite stable. But when I rotate the ...
3
votes
1answer
313 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
298 views

smile haarcascade

I have tried to integrate smile haarcascade (smileD_haarcascade_v0.05) in OpenCV but it only detect mouth portion how it will will detect whether person is smiling or not ?
3
votes
4answers
456 views

C++/C# external temperature/weather sensor

I am trying to build a system that would monitor the temperature and alert me when it becomes too hot/cold - I would like to use a USB interface. Where would I get such a device? Are there some open ...
3
votes
2answers
1k views

Using orientation sensor to point towards a specific location

I'm trying to implement an arrow that uses the orientation sensor in order to point towards a specific location. Google Places implements this arrow in a ListView for each place it finds. I've ...
3
votes
1answer
752 views

how to measure HeartBeat using an android device

My question is very simple and straight forward. Is there any technique through which i can calculate the heartbeat of a person using android device. I googled it and found some results in which ...
3
votes
2answers
2k views

mobile phone sensors!

After some hours of searching I'm so confused, so I'll tell now what I learned, so please correct me if I was wrong : Light Sensor: surrounding light Magnetic Sensor: I can get the north location. ...
3
votes
2answers
1k views

Sensors on Galaxy Tab emulator

I'm trying to get the orientation of a Galaxy Tab by reading the informations from various sensors. It should be possible to get the orientation with: the accelerometer and the compass (magnetic ...
3
votes
1answer
401 views

Kalman Filter Vs Exponential Filter

I was wondering, what are the advantages and disadvantages of Kalman Filter and Exponential Filter? I have a multi-sensor fusion problem and I'm trying to decide which method to choose. I think, ...
3
votes
1answer
1k views

getting info from magnetic sensors

I'm listening for sensor values, and getting them OK in my handler with if (event.sensor.getType() == Sensor.TYPE_MAGNETIC_FIELD) { for (i=0;i<3; i++) mag[i] = event.values[i]; The ...
3
votes
9answers
8k views

Is there any sensor in iPhone can Detect the Temperature of the air?

Getting cooler these days, thought it's a good idea adding some temperature function in apps, anyone knows iPhone has the hardware to support that?
3
votes
1answer
263 views

Can I monitor the iPhone proximity sensor without turning off screen? Also, landscape

I've got the proximity sensor working so that I can trigger events when in proximity, but I'm trying to use it as a sort of dead man switch. The problem is that whenever in proximity, the screen turns ...
3
votes
1answer
1k views

Display an Android Sensors List

I'm trying to display a list of available sensors but it's like there are not! I was thinking that it was because of the emulator, but i tried it on the phone and the result is the same. private ...
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 ...
3
votes
4answers
6k views

iPhone Temperature Sensor

My question is very similar to this one: iPhone Proximity Sensor. There's clearly some manner of thermometer within the iPhone that's readable by the OS. Has anyone uncovered the super-secret ...
2
votes
2answers
26 views

Android: Slow light sensor (only when unplugged)

I am currently working on an app that utilizes the light sensors to perform a task in my service. I used the examples from this site as my base: Android Light Sensor The sensors work perfectly when ...
2
votes
2answers
31 views

How to start camera intent without accelerometer sensor?

I'm currently writing a application that needs to capture some images. I start the camera application using a intent like this: if (v.equals(btnCap)) { Intent cameraIntent = new Intent( ...
2
votes
0answers
48 views

Android: getAngleChange - weird results

I'm currently experimenting with some sensors of Android phones. For testing, I'm using a Samsung Galaxy S. As it does not have a gyroscope, I'm using accelerometer and sensor for magnetic field. ...

1 2 3 4 5 6