Use an Android smartphone as a Raspberry Pi screen

Call Me

If you use the Raspbian Pixel desktop, an X server is already running and all programs send the graphic output to this local server. However, this can be easily changed for individual programs, because each program checks the DISPLAY environment variable. You can change this value by specifying the value at the command line for one program only (line 1) or for all subsequent commands (line 2):

$ DISPLAY=192.168.2.34:0 xeyes
$ export DISPLAY=192.168.2.34:0

The syntax of the DISPLAY variable always follows the pattern <IP address>:<X>.<Y>. On most systems the suffix (i.e., the display/screen number) is 0.0, or simply 0. You can also use the hostname of the target device instead of the IP address.

If you always use the same device in combination with the Rasp Pi, you should enter the display variable in the /etc/profile file, which sets the variable globally. However, this setting only applies to new sessions, and you do not want to do this for Pixel systems, because the output of the desktop on the locally connected screen requires the default value DISPLAY=:0.0.

Superficial

Creating a graphical user interface for a program is one of the most complex tasks in IT. Everyone can and wants to have a say, and everyone has a different idea of what a beautiful interface or ergonomic design is. This topic is non-trivial, because you need to keep the program operable even if it is busy doing other things (e.g., computing).

Fortunately, many libraries exist that make your life simple. The example here uses the Python programming language. Originally, the modern Kivy [5] was intended as a graphics library, but it uses highly efficient OpenGL for direct rendering, which does not work over the network. The project is now based on wxPython, a wrapper for the wxWidgets toolkit implemented in C++.

For your Raspberry Pi, you need to create a program that simulates a multiline liquid crystal display with control buttons (Figure 3). At the push of a button, you can request various items of system information, and the results end up in a text box. The whole thing can be implemented with surprisingly few lines of code.

Figure 3: The sample program on a smartphone with a screen resolution of 800x480 pixels.

Before programming, you have to install the required Python library:

$ sudo apt-get update
$ sudo apt-get -y install python-wxgtk3.0

On Raspbian Lite, the command also installs all the necessary auxiliary libraries for running graphical applications (i.e., the X client), so don't worry if the package list looks very long.

If required, also set up the wx3.0-examples package with examples in C++. Because method calls in C++ and Python are almost identical, the examples can be transferred easily to the Python world.

wxPython

The basic architecture of a wxPython program is no different from any other program with a graphical user interface. The main part consists of an infinite loop, known as the event loop.

Every interaction with the program, such as pressing a button, entering text, or moving the window, triggers an event. The event loop processes the interaction by passing it to the appropriate Python methods. The sample program has three buttons and, thus, three methods for processing.

In Listing 1, you can see the most important sections of the WxVlcdApp.py program, which you can find in my GitHub repository [6]. The event loop described can be found in the last line, which is where the program calls the MainLoop() method of the WxVlcdApp application class defined earlier.

Listing 1

WxVlcdApp.py (Excerpt)

 

The class extends the wx.App class and consists here of only a single method, OnInit(), which generates the application's user interface. To do this, a separate class, AppFrame, is defined (line 22) that constitutes the main part of the program.

The AppFrame constructor first creates the graphical elements in the create_controls() method (line 35), for which you use a BoxSizer() – known from other toolkits as BoxLayout(), or something similar.

This layout element aligns its children vertically; in the example these are the output text boxes and the buttonbar. The parameters of the Add() method define which child is allowed to expand and how it aligns itself. Further details can be found in the documentation for wxPython. Similarly, the create_buttons() method (starting in line 45) creates the toolbar. Here, three buttons are arranged in a horizontal BoxSizer().

Additionally, lines 50 through 52 determine which methods the program executes when the individual buttons are pressed. To add more buttons, simply copy and paste the lines in question.

Buy this article as PDF

Express-Checkout as PDF
Price $2.95
(incl. VAT)

Buy Linux Magazine

SINGLE ISSUES
 
SUBSCRIPTIONS
 
TABLET & SMARTPHONE APPS
Get it on Google Play

US / Canada

Get it on Google Play

UK / Australia

Related content

  • Python’s Tkinter Library

    Use Tkinter to control your Rasp Pi projects from a smartphone or tablet.

  • Python IDEs

    A number of useful development environments are available for Python in Linux. We’ll show you around some popular Python IDEs that are more than just text editors.

  • VS Code for Rasp Pi

    Professional and casual Python developers save time and keystrokes in a Visual Studio Code development environment for remote coding of a Raspberry Pi.

  • ioBroker + Rasp Pi

    Control devices from different manufacturers of home automation devices from a single interface by combining free software and a Raspberry Pi.

  • Deluxe Web Radio

    An LCD in an unusual format, a self-designed housing, and matching software make a simple Raspberry Pi web radio the perfect centerpiece for any living room.

comments powered by Disqus
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.

Learn More

News