iPhone Proximity Sensor - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T12:03:50Z http://stackoverflow.com/feeds/question/165539 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/165539/iphone-proximity-sensor 5 iPhone Proximity Sensor Greg 2008-10-03T03:06:11Z 2009-10-03T12:07:38Z <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/165539/iphone-proximity-sensor/165546#165546 4 Answer by Chris Lundie for iPhone Proximity Sensor Chris Lundie 2008-10-03T03:09:22Z 2008-10-03T03:09:22Z <p>There is no public API for this. </p> http://stackoverflow.com/questions/165539/iphone-proximity-sensor/165761#165761 0 Answer by Peter Wone for iPhone Proximity Sensor Peter Wone 2008-10-03T05:11:34Z 2008-10-03T05:11:34Z <p>Those proximity sensors are basically a matrix of conductors. The vertical "wires" are tracks on one side of a thin sheet of insulator, the horizontal ones are on the other side. The intersections function as capacitors. Your finger carries an electrostatic charge, so capacitance of each junction varies with proximity. FETs amplify the signal and biasing sets a threshold. In practice the circuit is more complex than that because it has to detect a <em>relative</em> change and reject noise.</p> <p>But anyway, what the sensor grid tells you is that a field effect has been sensed, and that field effect is characteristic of object about the size of a fingertip and resting on the surface of the display. The centroid of the capacitive disturbance is computed (probably by hardware) and the coordinates are (presumably) reported as numbers on a port most likely brought to the attention of the device OS by an interrupt. In something as sexy as an iPhone there's probably a buffer of the last dozen or so positions so it can work out direction and speed. Probably these are also computed by hardware and presented as numbers on the same port.</p> http://stackoverflow.com/questions/165539/iphone-proximity-sensor/168561#168561 4 Answer by benzado for iPhone Proximity Sensor benzado 2008-10-03T19:41:14Z 2008-10-04T03:01:51Z <p>Assuming you mean the sensor that shuts off the screen when you hold it to your ear, I'm pretty sure that is just a light sensor inside the ear speaker. If you start the phone app (you don't have to be making a call) and hold something to cast a shadow over the ear speaker, you can make the display shut off.</p> <p>Thus, even if you could access it (it's not in the SDK), it wouldn't be that useful for games, since it is only an on/off thing, not a near/far measure. Plus, it's only available on the iPhone and not the iPod touch.</p> http://stackoverflow.com/questions/165539/iphone-proximity-sensor/302532#302532 0 Answer by Coderer for iPhone Proximity Sensor Coderer 2008-11-19T16:39:39Z 2008-11-19T16:39:39Z <p>Looks like <a href="http://spazout.com/google_cheats_independent_iphone_developers_screwed" rel="nofollow">Google is using it</a> but it's not, as benzado pointed out, in the SDK. Go figure.</p> http://stackoverflow.com/questions/165539/iphone-proximity-sensor/302906#302906 15 Answer by Brendan Berg for iPhone Proximity Sensor Brendan Berg 2008-11-19T18:38:34Z 2008-11-19T18:56:36Z <p>There <em>is</em> a public API for this. -[UIApplication setProximitySensingEnabled:(BOOL)] will turn the feature on. BTW, it doesn't seem to be using the light sensor, because proximity sensing would tweak out in a dark room.</p> <p>However, the API call basically blanks the screen when you hold the phone up to your face. Not useful for interaction, sadly.</p> http://stackoverflow.com/questions/165539/iphone-proximity-sensor/304316#304316 3 Answer by chews for iPhone Proximity Sensor chews 2008-11-20T04:17:55Z 2008-11-20T04:38:56Z <p>@Dipak Patel &amp; @Coderer</p> <p>You can download working code at <a href="http://spazout.com/google_cheats_independent_iphone_developers_screwed" rel="nofollow">http://spazout.com/google_cheats_independent_iphone_developers_screwed</a></p> <p>It has a working implementation of proximityStateChanged a undocumented method in UIApplication.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/165539/iphone-proximity-sensor/334892#334892 0 Answer by Jason for iPhone Proximity Sensor Jason 2008-12-02T18:08:47Z 2008-12-02T18:08:47Z <p>This is not how the prox sensor works. It's not strictly light-based, as I just tested turning out the lights in a room, and the sensor didn't trip. However, I could make it trip by holding my hand over it about 5-6 inches away. Your description is accurate about how the touch screen works, but the prox sensor works without having to contact it (or even be that near). A friend suggested something ultrasonic. Anyone know for sure?</p> http://stackoverflow.com/questions/165539/iphone-proximity-sensor/396722#396722 3 Answer by Hang for iPhone Proximity Sensor Hang 2008-12-28T21:38:58Z 2008-12-28T21:38:58Z <p>The proximity sensor works via measuring IR reflectance. If you hold the iPhone up to a webcam, you can see a small, pulsing IR LED. </p> http://stackoverflow.com/questions/165539/iphone-proximity-sensor/1062207#1062207 0 Answer by arno for iPhone Proximity Sensor arno 2009-06-30T07:22:20Z 2009-06-30T07:22:20Z <p>Interesting possiblities. Would it be possible to register the pulsing ledlight in your home-energymeter using the proximity meter? Some of these lights only send out an IR-signal Does it work in standby-mode as well?</p> http://stackoverflow.com/questions/165539/iphone-proximity-sensor/1088382#1088382 2 Answer by Zaph0d42 for iPhone Proximity Sensor Zaph0d42 2009-07-06T17:59:32Z 2009-07-06T17:59:32Z <p>In iPhone 3.0 there is official support for the proximity sensor. Have a look at <code>UIDevice proximityMonitoringEnabled</code> in the docs.</p> http://stackoverflow.com/questions/165539/iphone-proximity-sensor/1163268#1163268 0 Answer by Kevin Lambert for iPhone Proximity Sensor Kevin Lambert 2009-07-22T05:49:39Z 2009-07-22T05:49:39Z <p>Evidently the proximity sensor will never turn on if the status bar is in landscape orientation.</p> <p>i.e. if you call:</p> <p>[UIApplication sharedApplication].statusBarOrientation = UIInterfaceOrientationLandscapeLeft;</p> <p>You will no longer get proximity:ON notifications.</p> <p>This definitely happens on OS 3.0, I can't test it on a 2.X device since I don't have one with a proximity sensor.</p> <p>This seems like a bug.</p> http://stackoverflow.com/questions/165539/iphone-proximity-sensor/1227705#1227705 0 Answer by Mary for iPhone Proximity Sensor Mary 2009-08-04T14:00:11Z 2009-08-04T14:00:11Z <p>What does heat have to do with activating the sensor. In hot weather, after I've been holding the phone next to my face to talk, the "end call" button doesn't work! It's as if athe whole screen has been warmed up so that it does not detect the heat of my finger( that I use to touch that button). After about a minute away from my face, the end call button will respond. Same is true for "accept call" and "decline call " ???</p> http://stackoverflow.com/questions/165539/iphone-proximity-sensor/1441832#1441832 0 Answer by Cryptognome for iPhone Proximity Sensor Cryptognome 2009-09-17T23:21:24Z 2009-09-17T23:21:24Z <p>There's a lot of confusion between the proximity sensor and the ambient light sensor. The iPhone has both. The Touch does not have a proximity sensor, making it a poor choice for user input. It would be a bad idea anyway since Apple isn't obligated to locate it in the same place in future devices; you aren't supposed to know or care where it is.</p> <p>The proximity sensor works by pulsing an infrared LED and measuring the amount of reflectance. You can see this using your iSight camera (most digital cameras are sensitive to IR.) Just launch Photo Booth, initiate a call (or play a voicemail) on the phone and point it at your iSight camera. Note the flashing light next to the earpiece; cover it with your finger and the screen will go black.</p> <p>The ambient light sensor's API is evidently private at this point.</p> http://stackoverflow.com/questions/165539/iphone-proximity-sensor/1513581#1513581 0 Answer by unknown (google) for iPhone Proximity Sensor unknown (google) 2009-10-03T12:07:38Z 2009-10-03T12:07:38Z <p>To turn the screen off it's conceivable that more than one sensors is used to figure out if the screen should be turned off or not. The IR proximity sensor described by Cryptognome in conjunction with the Touch screen sensor described by Peter Wone could work out if the iphone is being held close to your face (or something else with a slight electric charge) or if its just very close to something in-animate.</p>