micropython-st7789py-lcd-dr.../examples/colorbars/colorbars.py

34 wiersze
737 B
Python

"""
.. _colorbars.py:
colorbars.py
=============
.. figure:: ../_static/colorbars.jpg
:align: center
Test bitmap colors.
Displays WHITE, YELLOW, CYAN, GREEN, MAGENTA, RED, and BLUE color bar bitmap named
colorbars_{WIDTH}x(HEIGHT) on the display. Custom sized bitmap modules can be created
using the :ref:`make_colorbars_bitmap.py<make_colorbars_bitmap>` utility.
.. note:: This example requires the following modules:
.. hlist::
:columns: 3
- `st7789py`
- `tft_config`
- `colorbars_{WIDTH}x{HEIGHT}`
"""
import st7789py as st7789
import tft_config
tft = tft_config.config(tft_config.WIDE)
mod_name = f"colorbars_{tft.width}x{tft.height}"
colorbars = __import__(mod_name)
tft.pbitmap(colorbars, 0, 0)