Control your Rasp Pi projects with Python’s Tkinter library
The Tinkerer

© Lead Image © agor2012, 123RF.com
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
Direct Download
Read full article as PDF:
Price $2.95
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Find SysAdmin Jobs
News
-
KDE Plasma 5.27 Beta is Ready for Testing
The latest beta iteration of the KDE Plasma desktop is now available and includes some important additions and fixes.
-
Netrunner OS 23 Is Now Available
The latest version of this Linux distribution is now based on Debian Bullseye and is ready for installation and finally hits the KDE 5.20 branch of the desktop.
-
New Linux Distribution Built for Gamers
With a Gnome desktop that offers different layouts and a custom kernel, PikaOS is a great option for gamers of all types.
-
System76 Beefs Up Popular Pangolin Laptop
The darling of open-source-powered laptops and desktops will soon drop a new AMD Ryzen 7-powered version of their popular Pangolin laptop.
-
Nobara Project Is a Modified Version of Fedora with User-Friendly Fixes
If you're looking for a version of Fedora that includes third-party and proprietary packages, look no further than the Nobara Project.
-
Gnome 44 Now Has a Release Date
Gnome 44 will be officially released on March 22, 2023.
-
Nitrux 2.6 Available with Kernel 6.1 and a Major Change
The developers of Nitrux have officially released version 2.6 of their Linux distribution with plenty of new features to excite users.
-
Vanilla OS Initial Release Is Now Available
A stock GNOME experience with on-demand immutability finally sees its first production release.
-
Critical Linux Vulnerability Found to Impact SMB Servers
A Linux vulnerability with a CVSS score of 10 has been found to affect SMB servers and can lead to remote code execution.
-
Linux Mint 21.1 Now Available with Plenty of Look and Feel Changes
Vera has arrived and although it is still using kernel 5.15, there are plenty of improvements sure to please everyone.