DumbDisplay MicroPython Library -- workable with Python 3 -- is a port of the DumbDisplay Arduino Library to MicroPython / Python 3 for the DumbDisplay Android app. For a video introduction, please watch the YouTube video: Introducing DumbDisplay MicroPython Library -- with ESP32, Raspberry Pi Pico, and Raspberry Pi Zero.
Although the porting is still work-in-progress, a large portion of the core of DumbDisplay functionalities has been ported. Hopefully, this should already be helpful for friends that develop programs for microcontroller boards in MicroPython.
As hinted previously, even DumbDisplay MicroPython Library is originally targeted for MicroPython, it should be usable with regular Python 3, like with Raspberry Pi SBC or even with desktop / laptop. Therefore, DumbDisplay MicroPython Library might be an alternative way to prototype simple Android app driven remotely with Python 3 from desktop / laptop / SBC for displaying experiment result data and getting simple interactions from the user, even simple Android games, like the few simple Android game examples bundled with this library as examples; please refer to the section An Odd Way to Implement Simple Android Games in Python 3 for more details.
Enjoy
- DumbDisplay MicroPython Library (v0.6.5)
- Installation
- Getting Started
- More Details
- Selected Demos
- An Odd Way to Implement Simple Android Games in Python 3
- Thank You!
- License
- Change History
For "installing" this library for MicroPython, please refer to the above-mentioned YouTube video, which demonstrates some examples of using DumbDisplay MicroPython Library for microcontroller programming.
If your targeted is desktop / laptop, or SBC like Raspberry Pi, you can install the Python package (this library) like:
pip install git+https://github.com/trevorwslee/MicroPython-DumbDisplay
If in the installation process you see error like
ModuleNotFoundError: No module named 'setuptools.config.expand'; 'setuptools.config' is not a package
, please try to upgrade your setuptools package first like
pip install --upgrade setuptools
then try installing this library again.
If you would like to try out the development version (for desktop / laptop), you can install the development version like:
pip install --upgrade --force-reinstall git+https://github.com/trevorwslee/MicroPython-DumbDisplay@develop
To switch back after trying the development version, run
pip install --upgrade --force-reinstall git+https://github.com/trevorwslee/MicroPython-DumbDisplay
To use DumbDisplay MicroPython Library, the basic Python script setup is:
-
Import core components, for creating
DumbDisplayobject
e.g.from dumbdisplay.core import * dd = DumbDisplay()- you can import the core components with
from dumbdisplay.core import * - or you can choose to import all components (including layers to be mentioned later) with
from dumbdisplay.full import *
- you can import the core components with
-
Import IO mechanism, for creating IO object [to pass to DumbDisplay object] like
e.g.from dumbdisplay.core import * from dumbdisplay.ios import * dd = DumbDisplay(io=io4Wifi("ssid", "password")) # the default is io4Inet()- the default
ioisio4Inet(), which uses Python networking support (not available for MicroPython)
- the default
-
Import layer, for creating layer object [passing DumbDisplay object to it]
e.g.from dumbdisplay.core import * from dumbdisplay.layer_ledgrid import * dd = DumbDisplay() l = LayerLedGrid(dd)- you can choose to import all types of layers with
from dumbdisplay.full import *
- you can choose to import all types of layers with
When create a DumbDisplay object, an IO object is needed
io4Inet(the default) -- Python networking support (not available for MicroPython)io4Wifi-- MicroPython WiFi support (for Raspberry Pi Pico W, ESP32, etc.)io4Uart-- MicroPython UART support (for Raspberry Pi Pico W, ESP32, etc.)io4Ble-- MicroPython BLE support (for ESP32, etc.)
E.g.
from dumbdisplay.core import *
from dumbdisplay.ios import *
dd = DumbDisplay(io4Wifi("ssid", "password"))
Other then the DumbDisplay object, you will need to create one or more layer objects to represent the visible portion of the UI:
-
LayerLedGrid-- a single LED, or a row / column / grid of multiple LEDs (n columns by m rows)from dumbdisplay.core import * from dumbdisplay.layer_ledgrid import * dd = DumbDisplay() l = LayerLedGrid(dd)example:
demo_LayerLedGrid()indd_demo.py
-
LayerLcd-- a TEXT based LCD with configurable number of lines of configurable number of charactersfrom dumbdisplay.core import * from dumbdisplay.layer_lcd import * dd = DumbDisplay() l = LayerLcd(dd)example:
demo_LayerLcd()indd_demo.py
-
LayerGraphical-- a graphical LCD that you can draw to with common TFT LCD drawing directivesfrom dumbdisplay.core import * from dumbdisplay.layer_graphical import * dd = DumbDisplay() l = LayerGraphical(dd)example:
demo_LayerGraphical()indd_demo.py
-
Layer7SegmentRow-- a single 7-segment digit, or a row of n 7-segments digitsfrom dumbdisplay.core import * from dumbdisplay.layer_7segrow import * dd = DumbDisplay() l = Layer7SegmentRow(dd)example:
demo_Layer7SegmentRow()indd_demo.py
-
LayerTurtle-- a Python Turtle like canvas that you can draw to using Python Turtle like commandsfrom dumbdisplay.core import * from dumbdisplay.layer_turtle import * dd = DumbDisplay() l = LayerTurtle(dd)example:
demo_LayerTurtle()indd_demo.py
-
LayerSelection-- a row / column / grid of TEXT based LCDs mostly for showing selection choicesfrom dumbdisplay.core import * from dumbdisplay.layer_selection import * dd = DumbDisplay() l = LayerSelection(dd)example:
demo_LayerSelection()indd_demo.py
-
LayerPlotter-- a "plotter" for plotting real-time datafrom dumbdisplay.core import * from dumbdisplay.layer_plotter import * dd = DumbDisplay() l = LayerPlotter(dd)example:
demo_LayerPlotter()indd_demo.py
as shown in th example, two types of data are fed to the plotter --
XandSinl.label("X", sin="Sin")And the real-time values of
XandSinare fed likefor x in range(1000): sin = math.sin(x) l.set(x, sin=sin) time.sleep(0.8) -
LayerJoystick-- a joystick; also can be a horizontal or vertical sliderfrom dumbdisplay.core import * from dumbdisplay.layer_joystick import * dd = DumbDisplay() l = LayerJoystick(dd)demo_LayerJoystick()indd_demo.py
as shown in the example
- you can configure the joystick to be a horizontal or vertical slider by changing the
directionsparameter toLayerJoystick- param
max_stick_value: the max value of the stick; e.g. 255 or 1023 (the default); min is 15 - param
directions: "lr" or "hori": left-to-right; "tb" or "vert": top-to-bottom; "rl": right-to-left; "bt": bottom-to-top; use "+" combines the above like "lr+tb" to mean both directions; "" the same as "lr+tb"
- param
- feedback -- to be talked about later -- is enabled by default, and you can poll for feedback like
while True: fb = l.getFeedback() if fb: print(f"* Feedback: {fb.type} at ({fb.x}, {fb.y})")
- you can configure the joystick to be a horizontal or vertical slider by changing the
In case of multiple layers, you can "auto pin" them together; otherwise, multiple layers will be stacked on top of each other
AutoPin('V', AutoPin('H', l_ledgrid, l_lcd), AutoPin('H', l_selection, l_7segmentrow), l_graphical).pin(dd)
Example:
demo_AutoPin() in dd_demo.py |
|---|
![]() |
Certain user interaction, like pressing, with the layers (the UI) can trigger feedback to the corresponding layer objects
Given a layer l, normally you enable feedback like
l.enable_feedback()
or to enable feedback with auto flashing (UI feedback) of the layer by provide options like "fl" like
l.enable_feedback("fl")
There are two ways feedback of a layer can be received -- polling or callback
After creating the layer, a loop can be implemented to poll for feedback like
while True:
fb = l.getFeedback()
if fb:
print(f"* Feedback: {fb.type} at ({fb.x}, {fb.y})")
- fb is of type
DDFeedback DDFeedback.type: the type of feedback, like"click","doubleclick","longpress"DDFeedback.x,DDFeedback.y: the "coordinates" of the feedback
Here, what "coordinates" refers to depends on the type of layer- E.g, for
LayerLedGrid, "coordinates" refers to which LED - E.g, for
LayerGraphical, "coordinates" refers to the pixel coordinates - E.g, for
LayerSelection, "coordinates" refers to which selection
- E.g, for
Please take demo_Feedback() in dd_demo.py as an example.
When enabling the layer for feedback, a callback / handler can be supplied like
l.enableFeedback("fa", feedback_handler=lambda layer, type, x, y, *args: print(f"* Feedback: {type} at ({x}, {y})"))
The parameters passed to the callback lambda:
layer: the layer object that received the feedbacktype: the type of feedback (as mentioned above)x,y: the "coordinates" of the feedback (as mentioned above)*args: just there for future extension
Important note: Since DumbDisplay is "cooperative", you should give "time-slices" for DumbDisplay to process feedback signals from the Android app, like:
while True:
dd.timeslice()
Please take demo_Feedback_callback() in dd_demo.py as an example.
- If seeing ESP32 brownout detection issue, try
import machine machine.reset_cause() - If DumbDisplay Android app fails to make connection to desktop / laptop, check your desktop firewall settings; try switching desktop WIFI to use 2.4 GHz.
Here are two Raspberry Pi Pico PIO demos
| Respberry Pi Pico W Generating Tones With Programmable I/O (PIO) Using MicroPython | Respberry Pi Pico W NeoPixels Experiments With Programmable I/O (PIO) Using MicroPython |
|---|---|
![]() |
PyTorchIntroductoryExperiments -- targeted to be run with Python 3 -- shows two regular Python 3 demos
![]() |
![]() |
The odd way introduced here to implement simple Android games in Python 3 certainly involves this Python library, as well as the DumbDisplay Android app:
- This DumbDisplay library is used to implement the game logic in Python 3, as a simple personal game server.
- The DumbDisplay Android app is used to render the game graphical components, as well to get input from the users. Note that no work from you on this part -- the logics are driven by the Python game server.
- The connection protocol between the game server and the DumbDisplay Android app is TCP/IP over WIFI.
For example, a simple "Tetris One Block" implementation bundled with this library as one of the examples.
Please note that this "Tetris One Block" example was adapted from TETRIS ONE BLOCK/tetris_one_block.py of the GitHub Repository Python-Games |
![]() |
As mentioned, the example game "Tetris One Block" is bundled with the DumbDisplay MicroPython Library, which you can install in your Python 3 environment like
pip install git+https://github.com/trevorwslee/MicroPython-DumbDisplay
If during installation you see error like
ModuleNotFoundError: No module named 'setuptools.config.expand'; 'setuptools.config' is not a package
, please try to upgrade your setuptools package first like
pip install --upgrade setuptools
then try installing again.
Assuming DumbDisplay MicroPython library is installed, you can run the example game "Tetris One Block" like
python -m dumbdisplay example.tetris_one_block
When the example game [server] starts, the console should show output like
*** Running TETRIS ONE BLOCK ***
connecting socket ... listing on 192.168.0.46:10201 ...
Then, go ahead to your Android mobile phone, bring up the DumbDisplay Android app and connect it with the game server
![]() |
![]() |
![]() |
![]() |
With your DumbDisplay Android app connected to the game server, whatever game it is running, can be played with the DumbDisplay Android app as the UI for the game.
| Tetris One Block | Tetris Two Block | Tetris Classic |
|---|---|---|
![]() |
![]() |
![]() |
python -m dumbdisplay example.tetris_one_block |
python -m dumbdisplay example.tetris_two_block |
python -m dumbdisplay example.tetris_classic |
Another more exciting example game adapted from Python-Games is the "Space Shooting" game. Like the Tetris games, the "Space Shooting" game can also be played with the DumbDisplay Android app as the UI, with a user-friendly virtual joystick to control the movement of the space-fighter.
| portrait | landscape |
|---|---|
![]() |
![]() |
You can start the "Space Shooting" game serve like
python -m dumbdisplay example.space_shooting
If you prefer to play the game with no sound, you can disable sound by providing the --no-sound command-line argument like
python -m dumbdisplay example.space_shooting --no-sound
Enjoy!
Greeting from the author Trevor Lee:
Peace be with you! May God bless you! Jesus loves you! Amazing Grace!
MIT
v0.6.5
- added "space shooter" example
- added landscape layer pinning support
- bug fixes
v0.6.0
- added DDRootLayer
- added LayerTurtle
- added more examples
- bug fixes
v0.5.0
- ported "level options" for LayerGraphical
- ported LayerSelection
- added dumbdisplay_examples package
- bug fixes
v0.3.1
- ported LayerJoystick
v0.3.0
- checked Raspberry Pi Pico W WIFI support
- ported more options from Arduino DumbDisplay library
- bug fixes
v0.2.1
- ported LayerPlotter
- ported "layer margin"
- bug fixes












