@@ -7,9 +7,9 @@ I modified the original driver for one of my projects to add:
...
@@ -7,9 +7,9 @@ I modified the original driver for one of my projects to add:
- Display Rotation.
- Display Rotation.
- Scrolling
- Scrolling
- Writing text using bitmaps converted from True Type fonts
- Writing text using bitmaps converted from True Type fonts
- Drawing text using 8 and 16bit wide bitmap fonts
- Drawing text using 8 and 16-bit wide bitmap fonts
- Drawing text using Hershey vector fonts
- Drawing text using Hershey vector fonts
- Drawing JPG's, including a SLOW mode to draw jpg's larger than available ram
- Drawing JPGs, including a SLOW mode to draw jpg's larger than available ram
using the TJpgDec - Tiny JPEG Decompressor R0.01d. from
using the TJpgDec - Tiny JPEG Decompressor R0.01d. from
http://elm-chan.org/fsw/tjpgd/00index.html
http://elm-chan.org/fsw/tjpgd/00index.html
- Drawing and rotating Polygons and filled Polygons.
- Drawing and rotating Polygons and filled Polygons.
...
@@ -21,22 +21,33 @@ Hershey vector fonts and several example programs for different devices.
...
@@ -21,22 +21,33 @@ Hershey vector fonts and several example programs for different devices.
## Display Configuration
## Display Configuration
Some displays may use a BGR color order or iverted colors. The `cfg_helper.py` program can use used to determine the color order, inversion_mode, colstart, and rowstart values needed for a display.
Some displays may use a BGR color order or inverted colors. The `cfg_helper.py`
program can be used to determine the color order, inversion_mode, colstart, and
rowstart values needed for a display.
### Color Modes
### Color Modes
You can test the color order needed by a display by filling the display with the `st7789.RED` color and observing the color displayed.
You can test for the correct color order needed by a display by filling it with
- If the display is RED, the settings are correct.
the `st7789.RED` color and observing the actual color displayed.
- If the display is BLUE, `color_order` should be `st7789.BGR`.
- If the display is YELLOW, `inversion_mode` should be `True`.
- If the displayed color is RED, the settings are correct.
- If the display is CYAN, `color_order` should be `st7789.BGR` and `inversion_mode` should be `True`.
- If the displayed color is BLUE, `color_order` should be `st7789.BGR`.
- If the displayed color is YELLOW, `inversion_mode` should be `True.`
- If the displayed color is CYAN, `color_order` should be `st7789.BGR` and
`inversion_mode` should be `True.`
### colstart and rowstart
### colstart and rowstart
Some displays have a frame buffer memory larger than the physical LCD or LED matrix. In these cases the driver must be configured with the position of the first physcial column and row pixels relative to the frame buffer. Each rotation setting of the display may require different colstart and rowstart values.
Some displays have a frame buffer memory larger than the physical display
matrix. In these cases, the driver must be configured with the position of the
first physical column and row pixels relative to the frame buffer. Each
rotation setting of the display may require different colstart and rowstart
values.
The driver automatically adjusts the colstart and rowstarts values for common 135x240, 240x240 and
The driver automatically sets the `colstart` and `rowstart` values for common
240x320 displays. These values can be overridden using the `offsets` method if the default values do not work for your display. The `offsets` method should be called after any calls of the `rotation` method.
135x240, 240x240 and 240x320 displays. If the default values do not work for
your display, these values can be overridden using the `offsets` method. The
`offsets` method should be called after any `rotation` method calls.
#### 128x128 st7735 cfg_helper.py example
#### 128x128 st7735 cfg_helper.py example
...
@@ -107,29 +118,32 @@ This is a work in progress.
...
@@ -107,29 +118,32 @@ This is a work in progress.
- https://github.com/devbis for the original driver this is based on.
- https://github.com/devbis for the original driver this is based on.
- https://github.com/hklang10 for letting me know of the new mp_raise_ValueError().
- https://github.com/hklang10 for letting me know of the new mp_raise_ValueError().
- https://github.com/aleggon for finding the correct offsets for a 240x240
- https://github.com/aleggon for finding the correct offsets for 240x240
display and discovering issues compiling for STM32 based boards.
displays and for discovering issues compiling STM32 ports.
-- Russ
-- Russ
## Overview
## Overview
This is a driver for MicroPython to handle cheap displays based on the ST7789
This is a driver for MicroPython to handle cheap displays based on the ST7789
chip.
chip. The driver is written in C. Firmware is provided for ESP32, ESP32 with SPIRAM,
The driver is written in C. Firmware is provided for ESP32, ESP32 with SPIRAM,
pyboard1.1, and Raspberry Pi Pico devices.
# Setup MicroPython Build Environment in Ubuntu 20.04.2
# Setup MicroPython Build Environment in Ubuntu 20.04.2
See the MicroPython [README.md](https://github.com/micropython/micropython/blob/master/ports/esp32/README.md#setting-up-esp-idf-and-the-build-environment) if you run into any build issues not directly related to the st7789 driver. The recommended MicroPython build instructions may have changed.
The MicroPython README.md states: "The ESP-IDF changes quickly and MicroPython only supports certain versions. Currently MicroPython supports v4.0.2, v4.1.1 and v4.2, although other IDF v4 versions may also work." I have had good luck using IDF v4.2.
The MicroPython README.md states: "The ESP-IDF changes quickly, and MicroPython
only supports certain versions. Currently, MicroPython supports v4.0.2, v4.1.1,
and v4.2, although other IDF v4 versions may also work." I have had good luck
using IDF v4.2.
Clone the esp-idf SDK repo -- this usually takes several minutes
Clone the esp-idf SDK repo -- this usually takes several minutes.
If you already have a copy of the IDF you can checkout a version compatible with MicroPython and update the submodules using:
If you already have a copy of the IDF, you can checkout a version compatible
with MicroPython and update the submodules using:
```bash
```bash
$ cd esp-idf
$ cd esp-idf
...
@@ -168,7 +186,9 @@ Install the esp-idf SDK.
...
@@ -168,7 +186,9 @@ Install the esp-idf SDK.
./install.sh
./install.sh
```
```
Source the esp-idf export.sh script to set the required environment variables. It's important that you source the file and not run it using ./export.sh. You will need to source this file before compiling MicroPython.
Source the esp-idf export.sh script to set the required environment variables.
You must source the file and not run it using ./export.sh. You will need to
Update the git submodules and compile the micropython cross-compiler
Update the git submodules and compile the MicroPython cross-compiler
```bash
```bash
cd micropython/
cd micropython/
...
@@ -198,7 +218,11 @@ cd ..
...
@@ -198,7 +218,11 @@ cd ..
cd ports/esp32
cd ports/esp32
```
```
Copy any .py files you want to include in the firmware as frozen python modules to the modules subdirectory in ports/esp32. Be aware there is a limit to the flash space available. You will know you have exceeded this limit if you receive an error message saying the code won't fit in the partition or if your firmware continuously reboots with an error.
Copy any .py files you want to include in the firmware as frozen python modules
to the modules subdirectory in ports/esp32. Be aware there is a limit to the
flash space available. You will know you have exceeded this limit if you
receive an error message saying the code won't fit in the partition or if your
Build the MicroPython firmware with the driver and frozen .py files in the modules directory. If you did not add any .py files to the modules directory you can leave out the FROZEN_MANIFEST and FROZEN_MPY_DIR settings.
Build the MicroPython firmware with the driver and frozen .py files in the
modules directory. If you did not add any .py files to the modules directory,
you can leave out the FROZEN_MANIFEST and FROZEN_MPY_DIR settings.
```bash
```bash
make USER_C_MODULES=../../../../st7789_mpy/st7789/micropython.cmake FROZEN_MANIFEST=""FROZEN_MPY_DIR=$UPYDIR/modules
make USER_C_MODULES=../../../../st7789_mpy/st7789/micropython.cmake FROZEN_MANIFEST=""FROZEN_MPY_DIR=$UPYDIR/modules
```
```
Erase and flash the firmware to your device. Set PORT= to the ESP32's usb serial port. I could not get the usb serial port to work under the Windows Subsystem (WSL2) for Linux. If you have the same issue you can copy the firmware.bin file and use the Windows esptool.py to flash your device.
Erase and flash the firmware to your device. Set PORT= to the ESP32's usb
serial port. I could not get the USB serial port to work under the Windows
Subsystem (WSL2) for Linux. If you have the same issue, you can copy the
firmware.bin file and use the Windows esptool.py to flash your device.
```bash
```bash
make USER_C_MODULES=../../../../st7789_mpy/st7789/micropython.cmake PORT=/dev/ttyUSB0 erase
make USER_C_MODULES=../../../../st7789_mpy/st7789/micropython.cmake PORT=/dev/ttyUSB0 erase
make USER_C_MODULES=../../../../st7789_mpy/st7789/micropython.cmake PORT=/dev/ttyUSB0 deploy
make USER_C_MODULES=../../../../st7789_mpy/st7789/micropython.cmake PORT=/dev/ttyUSB0 deploy
```
```
The firmware.bin file will be in the build-GENERIC directory. To flash using the python esptool.py utility. Use pip3 to install the esptool if it's not already installed.
The firmware.bin file will be in the build-GENERIC directory. To flash using
the python esptool.py utility. Use pip3 to install the esptool if it's not
already installed.
```bash
```bash
pip3 install esptool
pip3 install esptool
```
```
Set PORT= to the ESP32's usb serial port
Set PORT= to the ESP32's USB serial port
```bash
```bash
esptool.py --port COM3 erase_flash
esptool.py --port COM3 erase_flash
...
@@ -239,7 +270,7 @@ for ESP32:
...
@@ -239,7 +270,7 @@ for ESP32:
$ cd micropython/ports/esp32
$ cd micropython/ports/esp32
And then compile the module with specified USER_C_MODULES dir
And then compile the module with specified USER_C_MODULES dir.
$ make USER_C_MODULES=../../../../st7789_mpy/st7789/micropython.cmake
$ make USER_C_MODULES=../../../../st7789_mpy/st7789/micropython.cmake
...
@@ -247,14 +278,15 @@ for Raspberry Pi PICO:
...
@@ -247,14 +278,15 @@ for Raspberry Pi PICO:
$ cd micropython/ports/rp2
$ cd micropython/ports/rp2
And then compile the module with specified USER_C_MODULES dir
And then compile the module with specified USER_C_MODULES dir.
$ make USER_C_MODULES=../../../st7789_mpy/st7789/micropython.cmake
$ make USER_C_MODULES=../../../st7789_mpy/st7789/micropython.cmake
## Working examples
## Working examples
This module was tested on ESP32, STM32 based pyboard v1.1 and the Raspberry Pi
This module was tested on ESP32, STM32 based pyboard v1.1, and the Raspberry Pi
Pico. You have to provide a `SPI` object and the pin to use for the `dc' input of the screen.
Pico. You have to provide an `SPI` object and the pin to use for the `dc' input
of the screen.
# ESP32
# ESP32
...
@@ -266,7 +298,7 @@ Pico. You have to provide a `SPI` object and the pin to use for the `dc' input o
...
@@ -266,7 +298,7 @@ Pico. You have to provide a `SPI` object and the pin to use for the `dc' input o
display.init()
display.init()
I was not able to run the display with a baud rate over 40MHZ.
I could not run the display with a baud rate over 40MHZ.
## Methods
## Methods
...
@@ -278,19 +310,31 @@ I was not able to run the display with a baud rate over 40MHZ.
...
@@ -278,19 +310,31 @@ I was not able to run the display with a baud rate over 40MHZ.
- `height` display height
- `height` display height
### Required keyword arguments:
### Required keyword arguments:
- `dc` sets the pin connected to the display data/command selection input. This parameter is always required.
- `dc` sets the pin connected to the display data/command selection input.
This parameter is always required.
### Optional keyword arguments:
### Optional keyword arguments:
- `reset` sets the pin connected to the displays hardware reset input. If the displays reset pin is tied high the `reset` parameter is not required.
- `reset` sets the pin connected to the display's hardware reset input. If
the displays reset pin is tied high, the `reset` parameter is not
required.
- `cs` sets the pin connected to the displays chip select input. If the displays CS pin is tied low, the display must be the only device connected to the SPI port. The display will always be the selected device and the `cs` parameter is not required.
- `cs` sets the pin connected to the displays chip select input. If the
display's CS pin is tied low, the display must be the only device
connected to the SPI port. The display will always be the selected
device, and the `cs` parameter is not required.
- `backlight` sets the pin connected to the displays backlight enable input. The displays backlight input can often be left floating or disconnected as the backlight on some displays are always powered on and cannot be turned off.
- `backlight` sets the pin connected to the display's backlight enable
input. The display's backlight input can often be left floating or
disconnected as the backlight on some displays is always powered on and
cannot be turned off.
- `rotations` sets the orientation table. The orientation table is a list of tuples for each `rotation` that defines the MADCTL register, width, height, start_x, and start_y values.
- `rotations` sets the orientation table. The orientation table is a list
of tuples for each `rotation` that defines the MADCTL register, width,
height, start_x, and start_y values.
Default `rotations` are included for the following st7789 and st7735 display sizes:
Default `rotations` are included for the following st7789 and st7735
display sizes:
Display | Default Orientation Tables
Display | Default Orientation Tables
------- | --------------------------
------- | --------------------------
...
@@ -301,29 +345,40 @@ I was not able to run the display with a baud rate over 40MHZ.
...
@@ -301,29 +345,40 @@ I was not able to run the display with a baud rate over 40MHZ.
You may define as many rotations in the list as you wish.
You may define as many rotations as you wish.
- `rotation` sets the display rotation according to the orientation table. The default orientation table defines four counter-clockwise rotations as 0-Portrait (0 degrees), 1- Landscape (90 degrees), 2- Reverse Portrait (180 degrees), and 3- Reverse Landscape (270 degrees) for 240x320, 240x240, 134x240, 128x160 and 128x128 displays with the LCD's ribbon cable at
- `rotation` sets the display rotation according to the orientation table.
the bottom of the display. The default rotation being Portrait (0 degrees).
The default orientation table defines four counter-clockwise rotations as
degrees), and 3- Reverse Landscape (270 degrees) for 240x320, 240x240,
134x240, 128x160 and 128x128 displays with the LCD's ribbon cable at the
bottom of the display. The default rotation is Portrait (0 degrees).
- `color_order` set the color order used by the driver st7789.RGB and st7789.BGR are supported.
- `color_order` sets the color order used by the driver (st7789.RGB or st7789.BGR)
- `inversion` Sets the display color inversion mode if True, clears the display color inversion mode if false.
- `inversion` Sets the display color inversion mode if True, clears the
display color inversion mode if false.
- `options` Sets driver option flags.
- `options` Sets driver option flags.
Option | Description
Option | Description
------ | -----------
------ | -----------
st7789.WRAP | pixels, lines, polygons and Hershey text will wrap around the display both horizontally and vertically.
st7789.WRAP | pixels, lines, polygons, and Hershey text will wrap around the display both horizontally and vertically.
st7789.WRAP_H | pixels, lines, polygons and Hershey text will wrap around the display horizontally.
st7789.WRAP_H | pixels, lines, polygons, and Hershey text will wrap around the display horizontally.
st7789.WRAP_V | pixels, lines, polygons and Hershey text will wrap around the display vertically.
st7789.WRAP_V | pixels, lines, polygons, and Hershey text will wrap around the display vertically.
- `buffer_size` If a buffer_size is not specified a dynamically allocated buffer is created and freed as needed. If a buffer_size is specified it must be large enough to contain the largest bitmap, font character and/or decoded JPG image used (Rows * Columns * 2 bytes, 16bit colors in RGB565 notation). Dynamic allocation is slower and can cause heap fragmentation so garbage collection (GC) should be enabled.
- `buffer_size` If a buffer_size is not specified, a dynamically allocated
buffer is created and freed as needed. If a buffer_size is set, it must
be large enough to contain the largest bitmap, font character, and
decoded JPG image used (Rows * Columns * 2 bytes, 16bit colors in RGB565
notation). Dynamic allocation is slower and can cause heap fragmentation,
so garbage collection (GC) should be enabled.
- `inversion_mode(bool)` Sets the display color inversion mode if True, clears the display color inversion mode if False.
- `inversion_mode(bool)` Sets the display color inversion mode if True, clears
the display color inversion mode if False.
- `madctl(value)` Returns the current value of the MADCTL register.
- `madctl(value)` Returns the current value of the MADCTL register. Optionally
Optionally sets the MADCTL register if a value is passed to the method.
sets the MADCTL register if a value is passed to the method.
Constant Name | Value | Description
Constant Name | Value | Description
---------------- | ----- | ----------------------
---------------- | ----- | ----------------------
...
@@ -337,7 +392,7 @@ I was not able to run the display with a baud rate over 40MHZ.
...
@@ -337,7 +392,7 @@ I was not able to run the display with a baud rate over 40MHZ.
- `init()`
- `init()`
Must be called to initalize the display.
Must be called to initialize the display.
- `on()`
- `on()`
...
@@ -363,8 +418,7 @@ I was not able to run the display with a baud rate over 40MHZ.
...
@@ -363,8 +418,7 @@ I was not able to run the display with a baud rate over 40MHZ.
- `hline(x, y, length, color)`
- `hline(x, y, length, color)`
Draws a single horizontal line with the provided `color` and `length`
Draws a single horizontal line with the provided `color` and `length`
in pixels. Along with `vline`, this is a fast version with reduced
in pixels. Along with `vline`, this is a fast version with fewer SPI calls.
number of SPI calls.
- `vline(x, y, length, color)`
- `vline(x, y, length, color)`
...
@@ -386,21 +440,22 @@ I was not able to run the display with a baud rate over 40MHZ.
...
@@ -386,21 +440,22 @@ I was not able to run the display with a baud rate over 40MHZ.
- `fill_circle(x, y, r, color)`
- `fill_circle(x, y, r, color)`
Draws a filled circle with radius `r` centered at the (`x`, `y`) coordinates in the given `color`.
Draws a filled circle with radius `r` centered at the (`x`, `y`) coordinates
in the given `color`.
- `blit_buffer(buffer, x, y, width, height)`
- `blit_buffer(buffer, x, y, width, height)`
Copy bytes() or bytearray() content to the screen internal memory.
Copy bytes() or bytearray() content to the screen internal memory. Note:
Note: every color requires 2 bytes in the array
every color requires 2 bytes in the array
- `text(font, s, x, y[, fg, bg])`
- `text(font, s, x, y[, fg, bg])`
Write text to the display using the specified bitmap `font` with the
Write text to the display using the specified bitmap `font` with the
coordinates as the upper-left corner of the text. The foreground and
coordinates as the upper-left corner of the text. The optional arguments `fg`
background colors of the text can be set by the optional arguments `fg` and
and `bg` can set the foreground and background colors of the text; otherwise
`bg`, otherwise the foreground color defaults to `WHITE` and the background
the foreground color defaults to `WHITE`, and the background color defaults
color defaults to `BLACK`. See the `README.md` in the `fonts/bitmap`
to `BLACK`. See the `README.md` in the `fonts/bitmap` directory for example