raspbian - How do I Disable Screen blanking on raspberry pi -


i running raspbian , using display device tv in retail centre.

i run chromium on startup line in .profile

xinit /usr/bin/chromium --kiosk --incognito www.mysite.com 

however non of solutions disable blanking seem work (although work if in raspbian gui).

it quite important (as can imagine) display screen not go blank......

does have solutions this?

kbd seems causes screen-blanking.
can disable kbd's screen blanking via it's configuration file, /etc/kbd/config.
open text editor such vi, nano, or leafpad.
note requires administrative rights.
change line

blank_time=30 

to

blank_time=0 

in order these settings take effect, restart/reboot rpi, or restart kbd with:

sudo /etc/init.d/kbd restart 

if still getting blanking after that, changing lightdm's config might fix it.
edit lightdm's configuration file (/etc/lightdm/lightdm.conf, requires root), , add following line after line "[seatdefaults]"

xserver-command=x -s 0 dpms 

note have tested kbd method!
sources:
http://www.raspberrypi.org/forums/viewtopic.php?f=28&t=18181
http://www.raspberrypi.org/forums/viewtopic.php?f=66&t=18200&p=180271#p180271


Comments

Popular posts from this blog

c# - Send Image in Json : 400 Bad request -

jquery - Fancybox - apply a function to several elements -

An easy way to program an Android keyboard layout app -