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.4k17 gold badges117 silver badges236 bronze badges
asked Dec 19, 2014 at 5:36
2
  • 1
    I can't see the digital signage part of the requirement. Commented Dec 19, 2014 at 10:34
  • If only the Pi would be able to render HTML5 videos without too much hickups that indeed would make a great digital signage box. We've given up trying about a year ago, without finding acceptable performance in any of the browsers available. Commented Jan 25, 2016 at 17:33

1 Answer 1

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.

answered Dec 19, 2014 at 9:02

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.