vote up 4 vote down
star
2

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 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.

Does the proximity sensor tell how close you are, or just that something is in front of it?

flag
add comment

9 Answers

vote up 4 vote down
check

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.

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.

link|flag
The iPod touch actually does have a light sensor. I can see it on mine near the top-left corner, above the screen, in direct sunlight. The screen brightness can auto-adjust to ambient lighting conditions. – Chris Lundie Oct 3 at 20:48
Uh... I didn't say the iPod doesn't have an ambient light sensor. We were discussing the proximity sensor, which as far as I can tell is implemented by detecting light. – benzado Oct 4 at 3:00
Oh so in the iPhone it's 2 different sensors? – Chris Lundie Oct 9 at 4:18
if it was a light sensor then the display would go off during a call in a dark room? – Dipak Patel Dec 29 at 16:07
add comment
vote up 7 vote down

There is no public API for this.

link|flag
add comment
vote up 7 vote down

There is 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.

However, the API call basically blanks the screen when you hold the phone up to your face. Not useful for interaction, sadly.

link|flag
How about a hide&seek game :) – Robert Gould Nov 20 at 4:48
How is this not the correct answer? – willc2 May 24 at 10:37
add comment
vote up 3 vote down

@Dipak Patel & @Coderer

You can download working code at http://spazout.com/google_cheats_independent_iphone_developers_screwed

It has a working implementation of proximityStateChanged a undocumented method in UIApplication.

Hope this helps.

link|flag
add comment
vote up 2 vote down

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.

link|flag
add comment
vote up 0 vote down

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 relative change and reject noise.

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.

link|flag
It sounds like you are describing the touch screen, not the proximity sensor (which shuts off the screen when you hold the phone to your ear). As far as I can tell, that's just a light sensor. – benzado Oct 3 at 19:37
I am, a touch screen is a proximity sensor. I didn't realise there was an ear-detection mechanism. – Peter Wone Oct 5 at 5:50
add comment
vote up 0 vote down

Looks like Google is using it but it's not, as benzado pointed out, in the SDK. Go figure.

link|flag
add comment
vote up 0 vote down

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?

link|flag
add comment
vote up 0 vote down

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?

link|flag
add comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.