Skip to content

normanfeltz/raspberry-pi-kiosk

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 

Repository files navigation

#Create Raspberry Pi Kiosk on Raspbian Debian Wheezy# With this tutorial you can create a 'fullscreen kiosk' which shows a webpage. This webpage will run in chromium. For the Epiphany Browser (ARMhf) read this article

Install Raspbian Debian Wheezy

The first step is to install Raspbian on the Raspberry Pi. There are 2 ways to do this.

At the end you need a fresh Raspbian Debian Wheezy installed on your Raspberry Pi.

##Configure Raspbian Debian Wheezy##

When starting Raspbian for the first time you will see the Raspi Config tool. If it doesn't start automatically, you can do it manually with sudo raspi-config. There are a few things you need to configure in raspi-config:

  • Update the Raspi config tool (Advanced Options)
  • Enable SSH when you want to proceed the configure process threw SSH (Advanced Options) This is optional.
  • Disable overscan. This option tries to adjust the resolution for your Raspberry Pi. But it will only f**k things up :) (Advanced Options)
  • Change your boot to desktop environment. This will start-up the GUI instead of the CLI and automatically will login to user 'pi'.

Now reboot your machine. Normally Raspi-config ask to reboot, but if it doesn't you can reboot with sudo reboot

After rebooting the GUI environment will automatically startup and you will see the LXDE desktop environment. Now start the terminal and update your system:

sudo apt-get update
sudo apt-get upgrade

Now we install the tools we need to perfectly show the webpage. Add the Chromium repository and install the software. The next command will install x11 server utils and unclutter (to hide the cursor from the screen)

wget -qO - http://bintray.com/user/downloadSubjectPublicKey?username=bintray | sudo apt-key add -
echo "deb http://dl.bintray.com/kusti8/chromium-rpi jessie main" | sudo tee -a /etc/apt/sources.list
sudo apt-get update
sudo apt-get install chromium-browser x11-xserver-utils unclutter

The tools are installed. When the GUI starts up chromium needs to boot in kiosk-mode and open the webpage we filled in. In the next file we can add lines what needs to be executed at startup.

sudo nano /etc/xdg/lxsession/LXDE-pi/autostart

(this has changed in Debian Wheezy. In the old versions it was /etc/xdg/lxsession/LXDE/autostart)

The autostart files needs to look like this

@xset s off
@xset -dpms
@xset s noblank
@chromium-browser --incognito --kiosk --disable-infobars [URL]

The @xset options will disable the energy-options from the X-server so the screen won't be shut down after a x amount of time. And finally Chromium will be startup in kiosk mode (with no error messages). Change the url to the url you want it to show. Local files are also possibly.

Now Chromium will start after the raspberry pi is booted up and will show the webpage.

Good to know

  • default Raspbian login: user: pi pass: raspberry
  • the GPU of the Pi isn't that powerful. So animations in the browser don't really run smoothly.

Sources

About

Guide to create an kiosk from an raspberry pi to show a dashboard

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published