Control your Rasp Pi projects with Python’s Tkinter library
The Tinkerer
Use Tkinter to control your Rasp Pi projects from a smartphone or tablet.
If you are looking for an easy way to control your Raspberry Pi projects, consider Python's Tkinter library. In about 20 lines of Python code, you can create a graphic program to control a Rasp Pi rover project (Figure 1). This article shows how to create a Python Tkinter application to control the Rasp Pi's General Purpose Input Output (GPIO) pins. I will also show you how to set up a desktop shortcut that you can use to easily launch the application, and I will configure a Virtual Network Computing (VNC) server so that a smartphone, tablet, or PC can control the Rasp Pi remotely.
Python Tkinter Library
Tkinter [1] is bundled with the standard Rasp Pi Python installation. The base Tkinter library contains 17 different widgets that you can use for graphic applications. These widgets can be defined with customizable colors, sizes, text, and commands. There are three geometry managers (Pack, Grid, and Place) that can be used to arrange the widgets. For Rasp Pi hardware projects, I found the Grid geometry manager was a good fit. Listing 1 is a simple test program that presents two buttons in a grid and prints feedback when the buttons are pressed. (Note: Python 2.7 references the library as Tkinter
, whereas Python 3 uses tkinter
, lowercase). Figure 2 shows this test program with some button feedback.
Listing 1
tk_test.py
Tkinter Rasp Pi GPIO Motor Example
The Rasp Pi communicates with external hardware through its GPIO pins. These GPIO pins only support 5V connections, so relays or custom tops are required to connect to higher-powered devices. Very low-powered motors can be directly connected to Rasp Pi GPIO pins; however, it is highly recommended that you use a Rasp Pi motor top or some other protection hardware.
Different Rasp Pi tops will vary on the GPIO pins used for their motor connections. For our hardware setup, GPIO pins 19 and 21 were connected to the left and right motors. The GPIO pins are accessed in Python using the RPi.GPIO library. The RPi.GPIO library is preinstalled in the Raspbian image. Listing 2 shows the full code required to drive two motors. For this example, pins 19 and 21 are set as outputs using the GPIO.setup call. A motor function is created to turn each motor on or off. The Tkinter code was enhanced to make the buttons larger and add color. Also, the Python lambda function was used for passing the motor states. Figure 3 shows the Tkinter GPIO control program.
Listing 2
tk_gpio.py
Rasp Pi Shortcut
To make the project easier to access, you can place a quick launch icon or shortcut on the Rasp Pi desktop (Figure 4). To configure a shortcut, add a file to the user's $HOME/desktop
directory:
nano $HOME/desktop/tk_gpio.desktop
The name, icon, and execution command are defined inside this file (Listing 3).
Listing 3
tk_gpio.desktop
Depending on how you plan to run your program, a shortcut might be enough; however, if you would like to control the project remotely, VNC is a good option.
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Gnome 48 Debuts New Audio Player
To date, the audio player found within the Gnome desktop has been meh at best, but with the upcoming release that all changes.
-
Plasma 6.3 Ready for Public Beta Testing
Plasma 6.3 will ship with KDE Gear 24.12.1 and KDE Frameworks 6.10, along with some new and exciting features.
-
Budgie 10.10 Scheduled for Q1 2025 with a Surprising Desktop Update
If Budgie is your desktop environment of choice, 2025 is going to be a great year for you.
-
Firefox 134 Offers Improvements for Linux Version
Fans of Linux and Firefox rejoice, as there's a new version available that includes some handy updates.
-
Serpent OS Arrives with a New Alpha Release
After months of silence, Ikey Doherty has released a new alpha for his Serpent OS.
-
HashiCorp Cofounder Unveils Ghostty, a Linux Terminal App
Ghostty is a new Linux terminal app that's fast, feature-rich, and offers a platform-native GUI while remaining cross-platform.
-
Fedora Asahi Remix 41 Available for Apple Silicon
If you have an Apple Silicon Mac and you're hoping to install Fedora, you're in luck because the latest release supports the M1 and M2 chips.
-
Systemd Fixes Bug While Facing New Challenger in GNU Shepherd
The systemd developers have fixed a really nasty bug amid the release of the new GNU Shepherd init system.
-
AlmaLinux 10.0 Beta Released
The AlmaLinux OS Foundation has announced the availability of AlmaLinux 10.0 Beta ("Purple Lion") for all supported devices with significant changes.
-
Gnome 47.2 Now Available
Gnome 47.2 is now available for general use but don't expect much in the way of newness, as this is all about improvements and bug fixes.