Page 1 of 1

Detect person in front of screen

Posted: Thu Nov 23, 2017 4:29 pm
by nakita_dog
I'm creating a wall based calendar kiosk type system and I would like to turn on the screen when someone is in front of the display or in visual range of it.

When no one is around and after a few minutes of inactivity, the screen should power down or go into screensaver mode. Maybe the default screensaver would be enough for this.

Any suggestions on how to accomplish this with minimal effort.

Also, any tutorials on how to do it would be great.

Re: Detect person in front of screen

Posted: Fri Nov 24, 2017 10:13 am
by pcmanbob
You could certainly do the detection bit using a HC-SR04 ultrasonic range sensor.

example
https://www.modmypi.com/blog/hc-sr04-ul ... spberry-pi

there are plenty more examples on the web.

Re: Detect person in front of screen

Posted: Fri Nov 24, 2017 10:24 am
by OutoftheBOTS
PIR sensor would also be a good way of detecting a warm body in front

Re: Detect person in front of screen

Posted: Fri Nov 24, 2017 5:15 pm
by nakita_dog
Thank you for the suggestions.