0

This is probably not the first digital signage discussion but I think my requirements are a bit different.

I'm looking to set up a Raspberry Pi to connect to a network via Wifi and a TV via HDMI, on boot it needs to open a URL inside a browser in full screen. That's it. Its very simple and I know it can be done. I just don't have any Raspberry Pi experience nor do I own one yet so I don't have a clue where to start.

I've just put an order for one but I'm not sure if something like this needs to be bought as a pre built kit with a box (obviously as it will be mounted on the back of a TV.

goldilocks
  • 60,325
  • 17
  • 117
  • 234
Sam
  • 1

1 Answers1

3

That is quite a straight forward request.

Start with updating your Pi (I am assuming Raspbian)

sudo apt-get update -y 
sudo apt-get upgrade -y 
sudo rpi-update 
sudo shutdown -r now

Then install chromium the open source version of google's chrome

sudo apt-get install chromium

then test the full screen aspects with

chromium --kiosk

Set the default homepage to the web address you want

Setup this command to run at startup, there are lots of articles detailing this, start here

How do I load a module at boot time?

If you have any specific problems with the above it may be worth starting separate questions.

rob
  • 2,813
  • 4
  • 22
  • 31