I am trying to display reports on a LCD using Raspberry PI with following requirements:
- When Raspberry PI is turned on the Epiphany Browser automatically opens a pre-configured URL in full Screen Mode.
- The display shouldn't go to sleep.
I am using B+ series Model of Raspberry PI with NOOBS.
So far I am able to configure PI to open Epiphany Browser with a pre-configured URL loaded in it. But I am unable to do it in full-screen mode. Secondly my display goes to sleep after some time. I have done following configuration at:
/etc/xdg/lxsession/LXDE/autostart
as
#@lxpanel --profile LXDE
#@pcmanfm --desktop --profile LXDE
#@xscreensaver -no-splash
@xset s off
@xset -dpms
@xset s noblank
@epiphany-browser http://10.10.2.70/myreport
@sleep 2s
@echo key F11 | xte -x:0
Kindly guide me how to proceed with this configuration to achieve my goal of displaying web page in full-screen mode on start-up and disabling of display sleep.