active questions tagged sensor - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T11:37:47Zhttp://stackoverflow.com/feeds/tag/sensorhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/165539/iphone-proximity-sensor5iPhone Proximity SensorGreg2008-10-03T03:06:11Z2009-12-13T01:51:28Z
<p>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.</p>
<p>For example, in a racing game, you could put your finger on the proximity sensor to go instead of taking up screen real-estate with your thumb. Of course though, if this was your only option, then iPod touch users wouldn't be able to use the application.</p>
<p>Does the proximity sensor tell how close you are, or just that something is in front of it?</p>
http://stackoverflow.com/questions/1447553/how-to-enable-sensor-simulator-in-android1How to enable sensor simulator in android??reni2009-09-19T02:34:51Z2009-12-01T15:04:59Z
<pre><code>Intent intent = new Intent(Intent.ACTION_VIEW,
Hardware.Preferences.CONTENT_URI);
startActivity(intent);
</code></pre>
<p>when i give the above code to enable sensors....they are showing errors....@ Hardware.Preferences.CONTENT_URI);...saying create a class Hardware...plz help...i'm a beginner in android...</p>
http://stackoverflow.com/questions/1664707/how-to-get-ambient-temp-from-arduino-lilypad-temperature-sensor1How to Get Ambient Temp from Arduino Lilypad Temperature Sensortmh2009-11-03T01:30:14Z2009-11-08T13:23:45Z
<p>I am connecting a <a href="http://www.sparkfun.com/commerce/product%5Finfo.php?products%5Fid=8777" rel="nofollow">LilyPad Temperature sensor</a> to a <a href="http://www.sparkfun.com/commerce/product%5Finfo.php?products%5Fid=9266" rel="nofollow">LilyPad Arduino 328 Main Board</a> with the goal of reading fairly accurate ambient temperature readings. The sensor is receiving power and giving a responses I'm able to read over serial.</p>
<p>The problem I am confronted with is that reading from the sensor is giving me very unusual - although consistent numbers. I'm reading the analog sensor input and converting to volts like this...</p>
<pre><code>loop(){
float therm;
therm = analogRead(2); // Read from sensor through Analog 2
therm *= (5.0/1024.0); // 5 volts / 1024 units of analog resolution
delay(100);
}
</code></pre>
<p>This yields a consistent reading of about 1.1 Volts which the sensor documentation indicates would be a ambient temp of about 60 degrees Celsius when the true ambient temp is about 23 degrees. The sensor is not close in proximity to any other electronics so I can't foresee that being the problem.</p>
<p>Is my code for reading the sensor incorrect? Could my sensor be faulty?</p>
http://stackoverflow.com/questions/1189098/basic-doubt-about-sensor-usage1Basic doubt about sensor usageAl2009-07-27T16:11:46Z2009-11-02T11:00:04Z
<p>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 facing me, the "up" vector pointing to the ceil. Whenever I tilt, the accelerometer allows me to get the "up" vector info change. The problem is that if I tilt the device and put it horizontally (screen now facing ceil, and "up" vector pointing to the opposite of where I am), then the up vector doesn't get updated any more if I rotate the phone horizontally on the table. This is something that clearly is detected by the magnetometer now. So, the question is, when to know where to use acc or mag for each case? Is there a generic way to achieve this?</p>
http://stackoverflow.com/questions/1647458/calculating-length-based-on-sensor-data0Calculating Length Based on Sensor DataBSchlinker2009-10-30T00:55:10Z2009-10-31T02:50:54Z
<p>I've got an IR sensor which writes its current information to a token which I then interpret in a C# application. That's all good -- no problems there, heres my code:</p>
<pre><code>SetLabelText(tokens [1],label_sensorValue);
sensorreading = Int32.Parse(tokens[0]);
sensordistance = (mathfunctionhere);
</code></pre>
<p>Great. So the further away the IR sensor is from an object, the lower the sensor reading (as less light is reflected back and received by the sensor).</p>
<p>My problem is in interpreting that length. I can go ahead and get lets say "110" as a value when an object is 5 inches away, and then "70" as a value when an object is 6 inches away. Now I want to be able to calculate the distance of an object using these constants for any length.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/843675/how-do-i-find-out-if-the-gps-of-an-android-device-is-enabled2How do I find out if the GPS of an Android device is enabledMarcus2009-05-09T17:13:01Z2009-10-07T22:10:29Z
<p>On an Android Cupake (1.5) enabled device, how do I check and activate the GPS? </p>
http://stackoverflow.com/questions/1514333/getting-live-data-from-the-iphone-on-the-mac2Getting live data from the iPhone on the MacChristian2009-10-03T17:25:44Z2009-10-03T20:13:56Z
<p>Hi, I'm experimenting with the sensors of the iPhone. At the moment I visualize the data of the accelerometer by logging it to a file, downloading the file via Xcode and loading the file into my Ruby-Processing app. As I'm playing around a lot this process is getting annoying. It would be cool to have a live stream of the data on the Mac and see what happens in real time.</p>
<p>So what would be the easiest / fastest way to build a prototype for playing around with the data in real time?</p>
<p>I imagine, I could just send the data over the network and have a Cocoa / OpenGL app read an visualize it. What do you think? Could you give me some clues on how to do that? Thanks!</p>
http://stackoverflow.com/questions/1301435/does-iphone-allow-light-sensors-as-input1Does iPhone allow Light sensors as input?Divanshu2009-08-19T17:25:53Z2009-08-19T17:46:19Z
<p>Hi,</p>
<p>I was just wondering whether iPhone developement allows light sensors to be used, as buttons or action elements??</p>
<p>I found this link online...</p>
<p>Possible to use Light Sensor as a Button? [Archive] - Touch Arcade </p>
<p>If anyone could shed some light on the issue, I'd appreciate the help?</p>
<p>Cheers.</p>
<p>Divanshu.</p>
http://stackoverflow.com/questions/1185874/how-to-determine-absolute-orientation1How to determine absolute orientationAl2009-07-26T23:28:49Z2009-07-27T00:05:24Z
<p>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 sensors in different order.</p>
<p>Let me give an example. If I have the device facing me then changes in both the roll and pitch can be determined with the accelerometer. For yaw I use the magnetometer.</p>
<p>But if I put the device horizontally (ie. turn it 90º, facing the ceiling) then any change in the up vector (now horizontal) isn't notice, as the accelerometer doesn't detect any change. This can now be detected with the magnetometer.</p>
<p>So the question is, how to determine when to use one or the other. Is this enough with both sensors or do I need something else?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1077324/iphone-temperature-sensor2iPhone Temperature SensorKevin L.2009-07-03T00:19:25Z2009-07-03T02:02:11Z
<p>My question is very similar to this one: <a href="http://stackoverflow.com/questions/165539/iphone-proximity-sensor">iPhone Proximity Sensor</a>. There's <a href="http://www.gearlog.com/2009/07/apple%5Fissues%5Fheat%5Fadvisory%5Ffor.php" rel="nofollow">clearly</a> some manner of thermometer within the iPhone that's readable by the OS. Has anyone uncovered the super-secret undocumented APIs to read this sensor?</p>
http://stackoverflow.com/questions/1059839/how-to-build-a-sensor-simulator-for-android1How to Build a Sensor Simulator for Android?Hugo2009-06-29T18:47:09Z2009-06-30T04:18:08Z
<p>Hello,</p>
<p>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 (<a href="http://code.google.com/p/openintents/wiki/SensorSimulator" rel="nofollow">OpenIntents' SensorSimulator</a>) but, for what I want to do, a would like to create my own sensor simulator application.</p>
<p>I have not found information on how to do this (I do not know if disassembly the jar of the Simulator is correct) and, as I said, I would like to build a smaller and simpler version of a sensor simulator, more suitable for my intents.</p>
<p>Do you know where could I start? where can I see what are the pieces of code that I need to build?</p>
<p>Basically, all my asking just for some direction =)</p>
<p>Thanks in advance for your answers.</p>
http://stackoverflow.com/questions/842411/can-one-access-the-windows-7-sensor-and-location-platform-from-silverlight0Can one access the Windows 7 Sensor and Location platform from Silverlight?JonnyBoats2009-05-09T00:49:03Z2009-05-12T02:21:05Z
<p>Is it possible to access the Windows 7 Sensor and Location platform from Silverlight? In particular I would like to know about the location data (GPS) and the ambient light sensor.</p>
<p>Edit: I would assume that the way to do this would be with C# in the code behind file.</p>
http://stackoverflow.com/questions/635421/toggling-proximity-sensor-on-iphone-loses-an-event1toggling proximity sensor on iPhone loses an eventslugolicious2009-03-11T16:54:43Z2009-03-11T17:54:43Z
<p>I'm using setProximitySensingEnabled and implemented proximityStateChanged in my UIApplication subclass. It looks like if sensing is toggled, that the first "off" event is being lost.</p>
<p>My UIApplication class is pretty basic...</p>
<pre><code> -(void)proximityStateChanged:(BOOL)state { NSLog(state ? @"ON" : @"OFF"); }
</code></pre>
<p>In my application delegate, I have a UISwitch that enables/disables the proximity sensor.</p>
<pre><code>-(IBAction)toggleProxy:(id)sender { [UIApplication sharedApplication].proximitySensingEnabled = prox.on; }
</code></pre>
<p>"prox" is my UISwitch. The test works fine when it first starts. I tap the switch to turn it on and then put my hand over the sensor for a second then move it away and get:</p>
<pre><code>2009-03-11 12:43:00.465 Proximity[324:20b] ON
2009-03-11 12:43:02.514 Proximity[324:20b] OFF
2009-03-11 12:43:04.046 Proximity[324:20b] ON
2009-03-11 12:43:05.621 Proximity[324:20b] OFF
</code></pre>
<p>I then tap the switch to turn it off then tap again to turn it on. Now I get:</p>
<pre><code>2009-03-11 12:43:12.005 Proximity[324:20b] ON
2009-03-11 12:43:14.789 Proximity[324:20b] ON
2009-03-11 12:43:16.467 Proximity[324:20b] OFF
2009-03-11 12:43:17.516 Proximity[324:20b] ON
2009-03-11 12:43:19.077 Proximity[324:20b] OFF
</code></pre>
<p>Notice I get two ON's before an OFF. The OFF is lost somewhere. I can't replicate this behavior using Google's mobile app so I'm wondering if they're resetting something in between proximity enabling. They don't have the proximity sensor on all the time because if you cover the sensor, the screen doesn't go blank. You have to tilt the phone up and angle it back (to simulate the position it would be in at your ear) and then covering the sensor works.</p>
<p>Anyone else playing with the sensor?</p>
<p>In my particular app, I'm recording a voice message and when you move the phone away from your ear, I want to pause the recording (when I get an OFF). The first time I move the phone away from my ear, the recording is not paused. However, if I put it to my ear and move it away again, it <em>is</em> paused.</p>
http://stackoverflow.com/questions/126877/educational-usages-of-acceleration-sensors4Educational usages of acceleration sensorsComSubVie2008-09-24T12:37:37Z2008-09-24T12:54:52Z
<p>Hello!</p>
<p>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 engineering, project management, user interface [iPhone]...) and achive better motivation of the students (for example by giving a far milestone like an autopilot).</p>
<p>However this doesn't seem to be a widely used idea; acceleration sensors are used somewhere at universities for different projects and are included in some modern hardware or gadgets (iPhone).</p>
<p>I'd like to know if there is somebody who knows about educational projects that use these sensors in any kind of subject?</p>
<p>thanks</p>