peterhinch / micropython-font-to-py

A Python 3 utility to convert fonts to Python source capable of being frozen as bytecode
MIT License
368 stars 67 forks source link

SSD1327? #44

Open Treadbrook opened 1 year ago

Treadbrook commented 1 year ago

I've had wonderful results using Writer with an 0.96" OLED.

The 1.5" driver (SSD1327) looks similar and appears to use framebuf, but I can't seem to get it to work.

Has anyone had any success making this work on an SSD1327-based display?

Thanks.

peterhinch commented 1 year ago

You're best off asking the question in discussions as it will get more views. Or you could look at the driver code to see if it can easily be adapted.

I haven't written a driver for this chip. The requirements for a driver to be compatible with the writer classes, nano-gui and micro-gui are listed here. If the display object is subclassed from framebuf, the other requirements are easily met.

If you get this working, you might like to submit a PR with the adapted driver.