Skip to content

Repository for Raspberry Pi-based interactive displays

Notifications You must be signed in to change notification settings

pjaselin/VTGuardMuseum

Repository files navigation

VTGuardMuseum

This repository serves to store and share scripts as we develop interactive displays for the VT National Guard Museum. Beyond the specific needs of the museum, the code developed here can be easily repurposed for projects where one would like to have an interactive touchscreen app controlling hardware and software on/from a Raspberry Pi.

screenshot of app

Work Product

The primary objective of this project was to develop an interactive display for The Great War Painting of Sheridan's Ride. Considering the hefty expenses of contracting other businesses or to use turnkey solutions, it was of particular interest to develop a low-cost system. The Raspberry Pi proved to be an ideal platform for such a project with a total cost of ~$130.

This mixed-media display was developed on a Raspberry Pi to which was connected a Pan-Tilt HAT, a red laser diode, and an official Raspberry Pi touchscreen. Yes, there are many wires connected to the Pi and yes it still works! Note that the power leads for the two servos had to be soldered together into a single lead, thus sharing one 5V pin. The other 5V pin had to be dedicated to the touchscreen. The laser required one of the 3V pins.

With the hardware connected, an interactive app was written in the Python-Kivy framework that enables museum visitors to select a full or partial presentation of the mural via the touchscreen display (see sample of the app display above). On button press, the app plays an audio file and moves around the laser pointing to features of interest. Note that in this repository and for development, the audio files are samples of President Franklin D. Roosevelt's Pearl Harbor Speech. For the actual installation, the museum scripted and recorded presentations to insert into this app. Also note that the coordinates and corresponding timestamps of where the laser should point are provided as lists in the kivy_museum_app.py file. In the future, it is certainly possible that more advanced and continuous laser movements could be enabled.

Technical Objectives Achieved

  • An interactive app that controls the Pi
  • Plays audio files
  • Moves the servo HAT
  • Turns on/off the laser
  • Laser/audio sequenced together
  • Current sequence can be terminated and a new one can be started (stop one audio/laser movement and start another)
  • In-app button to shutdown the app and RPi as well if desired (this is achieved by uncommenting #subprocess.call("sudo shutdown now", shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) near the end of the code)
  • App can be launched at RPi start (needs to be done by adding kivy_museum_app.py to /etc/rc.local, see here)

Technologies Involved

  • Kivy (https://kivy.org/#home): framework for developing interactive applications in Python
  • RPi.GPIO: control of Raspberry Pi pins via GPIO for servos and laser
  • pygame: control audio files
  • threading: enables laser/servo to be sequenced to audio files
  • pigpio: control servo movement

How to Run Kivy App:

For Raspberry Pi Touchscreen Configuration

Please be sure to also make the edits noted at the bottom of this page to use the RPi touchscreen with this Kivy app: https://kivy.org/doc/stable/installation/installation-rpi.html

Deployment with Desktop Shortcuts

As noted before, this repository includes a script to run the app and another to shutdown the RPi. For the museum, it is desirable for both of these functions to be run from desktop shortcuts. In order to obtain both of these functionalities, in the repository directory, run:

chmod +x kivy_museum_app.py

and

chmod +x rpi_shutdown.py

Next, enter the desktop directly. This will likely work:

cd ~/Desktop

Kivy App Shortcut

Next create a text file with:

nano presentation_app.desktop

and paste the following into the file, editing the filepaths accordingly:

[Desktop Entry]
Version=1.0
Name=Presentation
Comment=Shorcut to launch Python-Kivy app
Exec=/home/pi/VTGuardMuseum/kivy_museum_app.py
Icon=/home/pi/VTGuardMuseum/markdown/icon.jpg
Path=/home/pi/VTGuardMuseum
Terminal=false
Type=Application
Categories=Utility;Application;

Shutdown Shortcut

Again create a text file with:

nano shutdown.desktop

and paste the following into the file, editing the filepaths accordingly:

[Desktop Entry]
Version=1.0
Name=Shutdown
Comment=Shorcut to shutdown RPi
Exec=/home/pi/VTGuardMuseum/rpi_shutdown.py
Icon=/home/pi/VTGuardMuseum/markdown/shutdown_icon.png
Path=/home/pi/VTGuardMuseum
Terminal=false
Type=Application
Categories=Utility;Application;

By now, there should be two shortcuts on the Raspberry Pi desktop with icons, one to launch the app and another to shutdown the RPi.

Final Notes

Hopefully this is the first of more and similar projects that leverage the Raspberry Pi as an effective and powerful platform for open-source development of museum displays. In the future, I would like to develop a more sophisticated/modern display at the least for my own benefit but also expand the potential for this kind of system.

Releases

No releases published

Packages

No packages published

Languages