Free Digital Signage with Raspberry Pi and Google Slides

As an Amazon Associate, I earn commission from qualifying purchases.

Using a Raspberry Pi with Google Slides is an excellent way to make very cheap and effective digital signage. In this guide I will show you how to build this. This is an updated method as the Screenly / Anthias software doesn’t seem to like 4K screens for Google Slides! And the beauty of it: once you set it up, you don’t have to touch the Pi again, just edit the Google Slides presentation and watch your screens update!


UPDATE: The Raspberry Pi Trading Company have just announced the release of the Raspberry Pi 5. Read all about it on my new post here. (It can run dual 4K displays, so it will be perfect for your next digital signage project!)

Digital Signage in action

What you need:

Step 1: Prepare your Google Slides presentation for Digital Signage

Before we start, you should have a Google Slides presentation prepared that you want to show on your digital signage. Make the presentation with no transitions or timings, as it will be set to the same timings for every slide in the sharing phase.

Once you are happy with your slides, click on File -> Share -> Publish to Web. Then choose to advance slides every X seconds (set it to 5 if just images, longer if your slides will have a lot of text to read)

Make sure that the “Start slideshow as soon as the player loads” and
“Restart the slideshow after the last slide” boxes are ticked.

Then click Publish.

Copy the URL that is shown and save it somewhere you can get later.


Step 2: Prepare the SD Card

Download Raspberry Pi Imager from https://www.raspberrypi.com/software/

Untitled

Preparing the SD Card for your Digital Signage

  • Click on Choose OS

  • Select Raspberry Pi OS (other)

  • Select Raspberry Pi OS Lite (64-bit)

  • Select Choose Storage

  • Choose your memory card from the list (be careful not to select the wrong drive!)

  • Click on the gear icon

  • Choose a hostname for the device

  • Enable SSH using password authentication

  • Set the username and password

  • Configure Wireless if you will be using it (I use Ethernet for a more reliable connection)

  • Set Locale Settings (not essential but makes date and time correct)

  • Hit Save

  • Now click Write to wipe and install on the SD Card

Once complete, put the card in to the Raspberry Pi and fire it up.

Step 3: Log in and setup the Pi

Log in using SSH with whatever username and host name you gave the Digital Signage Pi during the SD Card prep phase. For example “ssh Colin@digitalsign.local

Update the software on the Pi first by using the following command

sudo apt update && sudo apt upgrade -y

This will update the Pi software list followed by installing all of the missing updates. The -y on the end just tells it to go ahead without prompting you for confirmation.

Once this is done we will install the packages needed to put our Pi into Kiosk mode. We will install Chromium browser and set it up to launch a webpage (our Google slides presentation) and make that page fullscreen.

sudo apt install --no-install-recommends xserver-xorg x11-xserver-utils xinit openbox chromium-browser -y

Once this installation has completed we just need to configure the browser to launch at login and tweak a few other settings.

First of all we need to make sure the Pi is in the correct graphics mode. Do this by editing the config.txt file in the boot folder.

sudo nano /boot/config.txt

or on the newer BookWorm Pi OS Lite
sudo nano /boot/firmware/config.txt

Look through the file to find the line similar to
dtoverlay=vc4-kms-v3d

Make sure that it reads dtoverlay=vc4-fkms-v3d and NOT kms (that little f is very important, without it the slides can be a little jerky)

Once that is done, save the file by pressing Ctrl-O then Return to save and then Ctrl-X to exit.

Next we will edit the file /etc/xdg/openbox/autostart using the command below.

sudo nano /etc/xdg/openbox/autostart

And then copy and paste the following code into the file, making sure to edit the “your-url-here” bit at the end. In here you want to paste the Google slides publish URL we got in Step 1.

# Disable screen saver / screen blanking / power management
xset s off
xset s noblank
xset -dpms

#Allow quitting the X server with CTRL-ATL-Backspace
setxkbmap -option terminate:ctrl_alt_bksp

#Start Chromium browser in kiosk mode
sed -i 's/"exited_cleanly":false/"exited_cleanly":true/' ~/.config/chromium/'Local State'
sed -i 's/"exited_cleanly":false/"exited_cleanly":true/; s/"exit_type":"[^"]+"/"exit_type":"Normal"/' ~/.config/chromium/Default/Preferences
chromium-browser --disable-infobars --kiosk 'http://your-url-here'

Again, Ctrl-O and Return to save the file and then Ctrl-X to exit nano.

Next we will make the X server start on login. Edit the .bash_profile file by doing
nano ~/.bash_profile and pasting the following code and saving using Ctrl-O then Return followed by Ctrl-X to exit.

[[ -z $DISPLAY && $XDG_VTNR -eq 1 ]] && startx -- -nocursor

Now we need to tell the Pi to autologin every time it restarts so that the slides will display automatically. Do this by running sudo raspi-config.

In the text menus that appear choose 1. System Options, then S5 Boot / Auto Login and then choose B2 Console Autologin
Then press Tab twice to highlight Finish and hit Return. When asked to reboot choose Yes.

The Pi will now reboot and when it comes back on it should auto login in start to display your slides!

Congratulations! You have just built a very cheap and fast digital signage solution. Hook it up to a nice big TV and you are off!

Bonus step: Auto power off and on

When I use this method to make digital signage I like to use the crontab to turn the display off and on using a schedule. Most modern TVs will go into standby mode when the HDMI source turns off, saving energy when your display is not in use.

To edit the crontab use sudo crontab -e

If it is your first time it will ask what you want to use to edit it, I suggest nano as we are used to this from previous steps.

Here is the crontab I use

#reboot the Pi Mon-Fri at 8am. This refreshes the slides and ensures the TV wakes up
0 8 * * 1-5 sudo reboot >/dev/null 2>&1

#this turns the display output on
15 8 * * 1-5 sudo vcgencmd display_power 1 >/dev/null 2>&1

#Disable HDMI end of day Mon - Fri 530pm. TV should go to sleep after
30 17 * * 1-5 sudo vcgencmd display_power 0 >/dev/null 2>&1

I hope this guide is useful to you, please share it and let me know how you use your Pi in digital signage!



Categories:


Comments

15 responses to “Free Digital Signage with Raspberry Pi and Google Slides”

  1. James B B Godwin avatar

    Question: Did you try this behind a proxy and if you did how did you enter the proxy details for screenly?

    1. Colin avatar

      Haven’t tried behind a proxy so far. It appears that it doesn’t support proxy out of the box but a quick search on the GitHub repo seems to show some people that have patched a workaround.

      1. James B B Godwin avatar

        could you link us, i tried before i posted but found nothing but im not that great with github tbh, Thanks.

        1. Colin avatar

          Sure thing!

          There is this post staying that proxy isn’t officially supported. https://support.screenly.io/hc/en-us/articles/213678423-Does-Screenly-support-routing-traffic-via-a-Proxy-server-?mobile_site=true

          Then this github issue seems to say that if you have a proxy that doesn’t have username and password you can make it work. See comments about adding set_proxy into the file misc/uzbl.rc.

          If your proxy requires authentication then you may be out of luck https://github.com/wireload/screenly-ose/issues/158

          I hope that helps a little and you get it working.

  2. James B B Godwin avatar

    Thanks, I’m going to have a play with it seems simple enough (he says).

  3. John Ord avatar

    I know, old post, but I did just this at our high school and it works to a point. Any new edits on the slide show do not show up on the screenly display. I had to republish the slide show and make a new asset. Did I miss something?

    1. Colin avatar

      The refresh interval set on the asset should solve it. We have ours set to 600 seconds so every ten minutes the asset reloads, so you do have to wait up to 10 mins for changes to be shown but we don’t need to delete and redo assets like you have. Maybe shorten the time on the asset and also check in the settings to see if any form of caching is enabled on the Screenly install? Let me know how you get on!

  4. DLEE avatar
    DLEE

    Hi. Whenever I changed on the google slide I have to stop the publish and start a new one. Google will generate a new URL. I have to update the URL in screenly too. How did you retain the same URL after editing the slide?

    1. Colin avatar

      I have never had to republish. Once I publish the presentation and add it to Screenly I just edit the presentation on Google and it “just works”. I have never had to republish to make changes show up. Once the Screenly asset time is up it reloads the slideshow and picks up any changes I have made.

  5. fivepin avatar

    Hey Colin!
    I just set this up at my house as a digital bulletin board to keep us on track. I set it up with a Harmony Hub, so the TV turns on at a certain time with certain things scheduled. I LOVE IT!

    I wanted to ask. Do you know of any other good sites that do things like the weather widget and the clock widget? I am wanting to get the most I can out of this!

    Thank you!

    1. Colin avatar

      That is such a cool setup with the Harmony Hub!

      I haven’t tried any weather things but after a very brief look around I think I would use this one https://weatherwidget.io/ and maybe paste the embed code into my own HTML page and then upload that to the Screenly box? That or host the HTML on some free webhosting and point to it using the Screenly URL mode.

      Let me know how you get on!

      1. fivepin avatar

        Tried embedding a lot of things into a “google site”, they would never load after being made assets. No idea why. Havent tried embedding them into a wordpress site and added that as an asset yet.

        I do have one issue. I would like only certain things to display on certain days. Such as, I want an asset to display on Monday and Wednesday, but ONLY those days. Is there anyway to do this, without making 1000 assets for every monday and wednesday in the near future?

  6. Tim Brown avatar

    I get an error that the transitions are not support, but we do not have any transition set on the slides. I can click dismiss, but then they stop repeating, any suggestions?

  7. Tim Brown avatar
    Tim Brown

    Update – I get an error that the transitions are not support, but we do not have any transition set on the slides. I can click dismiss, but then they stop repeating, any suggestions?
    I can click dismiss and it still works, is there a way to not get the message, or to automate the clicking of the dismiss?

    1. Colin avatar

      I am afraid I have not seen this error come up when we have used it so I am afraid I cannot help!

Leave a Reply to Colin Cancel reply

Your email address will not be published. Required fields are marked *