User Tools

Site Tools


doc:appunti:hardware:raspberrypi_digitalframe

This is an old revision of the document!


A digital frame with the Raspberry Pi

Digital frames have become common gadgets, easily available in electronics stores or online. Unfortunately they came with proprietary software, and limited flexibility. So my choice was to purchase a nice 24 inches monitor and boundle it with a Raspberry Pi 2, fitted with a 64 Gb SD card.

For the software part I opted for a web based user interface written in PHP, which allow to easily browse all the pictures organized in directories. Each directory containing images have a playlist.m3u file, which lists the files to be shown in the slideshow. The playlist file contains also geometry information to re-frame the pictures to fit the screen as requested. So I can show photos taken in 4:3 ratio on the 16:9 screen, without the black borders. All the magic of the slideshow is accomplished by the photo-reframe-slideshow software.

The Raspberry Pi Digital Frame

In the picture above you can see the final assembly. The monitor is a Philips 243V7QJABF, 24 inches LED IPS capable of 1920×1080 resolution, the software runs on the Raspberry Pi 2 Model B Rev 1.1, using a 64 Gb SD card.

Building the frame

The first step was to order the hand-made wood frame from a craftsman. The profile size is shown in the picture, the inner space to accomodate the monitor is 54.0 x 32.5 cm.

Wood Frame Profile

I made two aluminum brackets suitably drilled and bent to connect the frame and the monitor, using the Vesa mount holes.

Aluminium brackets Raspberry Pi Digital Frame: back

I used some electrical wiring, clamps and heat-shrink tubing to provide the power. The Raspberry Pi power supply is glued to the monitor back with a bit of silicone adhesive. A few pieces of felt and a cloth were used as padding to prevent the metal from dirtying the wall. Finally a bit of electrical cable was used to make the hanging hook, built so that the angle of the frame could be adjusted downwards.

Power supply for the Monitor and the Raspberry Pi

I had to cut some of the wooden frame to allow access to the monitor buttons, as you can see from the photograph of the detail. The Raspberry Pi is mounted with wood screws, an insulating plastic sheet and spacers made with rubber tube.

Wood cut to expose the buttons Monitor buttons Raspberry Pi mounting

Tip to improve

As you can see from the final assemble, the bottom frame of the monitor is higher than the wood frame, so a black stripe remains visible at the bottom. It would have been better to make a passepartout all around the monitor to hide that difference.

photo-reframe

The software core of the digital frame is the photo-reframe-slideshow program. Its main feature is the ability to show pictures at a specific zoom and pan points, without requiring to actually cut the original pictures. You upload the original pictures along a playlist file, which contains the re-frame options to be applied on the fly.

CheatSheet

Here it is a Cheat Sheet to be printed on a 7×7 cm sticker and attached below the wireless keyboard. Some shortcuts are related to the photo-reframe program, others are related to the XFCE desktop (default and custom shortcuts).

Space Immagine successiva
Backspace Immagine precedente
P Avvia o ferma la presentazione
C Mostra o nasconde il commento
I Mostra o nascondi le info
+/- Aumenta o diminuisce lo zoom
Frecce Panoramica
Esc / Q Esci
F1 Help
F2 Condividi via email
Ctrl-Q Poweroff, Reboot, etc.
Alt-F1 XFCE Menu
Alt-F2 Run program

RaspiOS customization

I downloaded and installed RaspiOS 2020-05-27 Buster, based on Debian 10. I choosed the full version “with desktop and recommended software”.

FIXME The WiFi is handled by Network Manager? The /etc/wpa_supplicant/wpa_supplicant.conf does conflict with Network Manager? The /boot/wpa_supplicant.conf trick explained in Setting up a Raspberry Pi headless does conflict as well?

Desktop Autologin

We want the Raspberry Pi to start automatically a graphic session, so in raspi-config we selected Boot OptionsDesktop / CLIDesktop Autologin. The logged-in user will be pi.

Syslog

To limit the useage of the SD card, we prefer to generate system logs in RAM instead of writing them to filesystem. So we installed the busybox-syslogd packages, which removes the rsyslog one. Once installed, you can see system log using the logread command.

GL Warning

Running the photo-reframe application on the Raspberry Pi will show a warning message:

libEGL warning: DRI2: failed to authenticate

It turned out that we have to set the GL Driver to avoid that warning. Once launched raspi-config, select Advanced OptionsGL Driver (this choiche will install the gldriver-test package) ⇒ GL (Fake KMS).

Actually we used a fake workaround, because activating the Full KMS option causes several crashes of the graphical system, the errors logger are something like:

[drm:drm_atomic_helper_wait_for_dependencies [drm_kms_helper]]
    *ERROR* [PLANE:183:plane-21] flip_done timed out
[drm:drm_atomic_helper_wait_for_flip_done [drm_kms_helper]]
    *ERROR* [CRTC:74:crtc-2] flip_done timed out
[drm:drm_atomic_helper_wait_for_dependencies [drm_kms_helper]]
    *ERROR* [CRTC:74:crtc-2] flip_done timed out
[drm:drm_atomic_helper_wait_for_dependencies [drm_kms_helper]]
    *ERROR* [CONNECTOR:32:HDMI-A-1] flip_done timed out

Hide the mouse pointer

If you use only the keyboard to control the interface, the mouse pointer at the center of the screen is definitely annoying. Fortunately enough there is the Debian package unclutter: once installed you will find a running process when you initiate your desktop session:

/usr/bin/unclutter -idle 1 -root

The mouse pointer will disappear after one second of idle time, just to reappear if you move the mouse. If you want to customize the options, change the file /etc/default/unclutter.

Keyboard Shortcut

We choosed XFCE as Desktop Environment, so we can use SettingsKeyboardApplication Shortcuts to associate a key combination to an action. We decided to associate Ctrl-Q with the applet xfce4-session-logout. The setting is saved into $HOME/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml.

Screen Saver

With the command xset q it is possibile to query the status of the DPMS (you must be the user owning the X display):

xset q
...
DPMS (Energy Star):
  Standby: 600    Suspend: 600    Off: 600
  DPMS is Enabled
  Monitor is On

On the Raspberry Pi, the auto-logon user is pi, if you are root you can set the DISPLAY and XAUTHORITY environment variables before calling xset. Check the running Xorg process to get such variables:

ps -C Xorg ho args
/usr/lib/xorg/Xorg :0 -seat seat0 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch

Now you can execute xset as user root:

export DISPLAY=":0" XAUTHORITY="/var/run/lightdm/root/:0"; xset q

If you disable the screensaver from the desktop environment (in our case XFCE SettingsPower ManagerDisplay), you will see the line DPMS is Disabled in xset q output.

Executing programs from the Firefox browser

Our digital frame will use a web page as the main user interface; the browser will start automatically at boot time and it will connect to a page located on http://localhost/. A local running Apache+PHP will serve the page showing thumbnails for image folders.

Basically from the web page we want to be able to execute two actions:

  • The slideshow program photo-reframe to actually view the slideshow.
  • Shell scripts using the bash shell, to do actions like shutdown, reboot, etc.

FIXME To be completed…

Firefox customization

RaspiOS 2020-05-27 Buster (based on Debian 10.4) installaed Firefox Version 68.12.0esr.

Disable the session restore page

If Firefox is badly closed (e.g. due a power outage, etc.), when it starts again it display the page about:sessionrestore. To disable this behaviour open the about:config and set:

browser.sessionstore.resume_from_crash => false

Disable the status panel

Firefox shows a status bar in the lower left corner of the window, where it shows the URL currently focused or under the mouse. To disable this feature open the about:config page and set:

toolkit.legacyUserProfileCustomizations.stylesheets => True

then create a file $HOME/.mozilla/firefox/<random-id>.default-esr/chrome/userChrome.css with this content:

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
#statuspanel { display: none !important; }

See this support page.

Starting in fullscreen mode

We choosed the AutoFullscreen extension, by tazeat. Open the Firefox Menu ⇒ Addons ⇒ Extensions and search for it. Once installaed, it is saved into the directory $HOME/.mozilla/firefox/<random-id>.default-esr/extensions/{<random-id>}.xpi.

With that extension loaded, Firefox will start in fullscreen automatically. Press F11 as usual to toggle this state.

Programs Autostart

We want to run automatically two processes at startup

  • The Firefox browser, pointing to http://localhost/. This is the main user interface, used to browse image folders and to start the slideshow.
  • The photo-reframe program to show images from a randomly generated playlist. This is the slideshow started automatically at startup.

We achieve this creating two .desktop files into the .config/autostart directory of the pi user.

This is the /home/pi/.config/autostart/firefox-esr.desktop file:

[Desktop Entry]
Name=Firefox ESR
Comment=Browse the World Wide Web
GenericName=Web Browser
X-GNOME-FullName=Firefox ESR Web Browser
Exec=/usr/lib/firefox-esr/firefox-esr http://localhost/
Terminal=false
X-MultipleArgs=false
Type=Application
Icon=firefox-esr
Categories=Network;WebBrowser;
StartupWMClass=Firefox-esr
StartupNotify=false
Path=

This is the /home/pi/.config/autostart/play-playlists.desktop file:

[Desktop Entry]
Type=Application
Version=1.0
Name=Play-Playlists
Icon=image
TryExec=/home/pi/Scripts/play-playlists.sh
Exec=/home/pi/Scripts/play-playlists.sh --delay 16
Terminal=false

Fixed WiFi MAC address

Everytime the Raspberry Pi is rebooted, it gets a new MAC address for the wlan0 interface. This is a feature provided by the Network Manager package.

If you want to disable this behaviour, create a new file /etc/NetworkManager/conf.d/100-disable-wifi-mac-randomization.conf whith this content:

[connection]
wifi.cloned-mac-address=1

[device]
wifi.scan-rand-mac-address=no

See the man page for nm-system-settings.conf, the article Randomize your MAC address using NetworkManager and this post on how to disable it on the Raspberry Pi.

Web References

doc/appunti/hardware/raspberrypi_digitalframe.1610203891.txt.gz · Last modified: 2021/01/09 15:51 by niccolo