Russ Hughes

Results 7 comments of Russ Hughes

The urequests module should be in now. I'm not familiar with pyotp.

There is no support for png files in the driver.

PNG support with Alpha channel masking is now in the driver using the https://github.com/kikuchan/pngle library. It is lightly tested but works with pngle compatible PNGs.

Decoding a 240x240 jpg using the FAST method requires a lot of memory (240x240x2 bytes) to buffer the entire decoded jpg. If your device does not have PSRAM, it probably...

This is working for me using the PICO's hardware SPI connected to a no-name st7789 240x240 display without CS running MicroPython v1.19.1 from firmware/RP2/firmware.uf2. ``` from machine import Pin, SPI...

You can set the direction and orientation of the drawing by changing the MADCTL register value using the madctl method and the MADCTL_M? constants. The cfg_helper.py program in the examples...

See: https://github.com/russhughes/st7789_mpy#madctl-examples for example MADCTL values.