Skip to content

Releases: adafruit/Adafruit_CircuitPython_framebuf

Font file validation.

21 Aug 18:32
8d7f44c
Compare
Choose a tag to compare
  • Add a simple font file validation check.

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip install adafruit-circuitpython-framebuf.

Read the docs for info on how to use it.

Add rotation support

31 Mar 23:18
b9f62c4
Compare
Choose a tag to compare

you can now rotate displays 4 ways, removed unused RGB type def as well

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip install adafruit-circuitpython-framebuf.

Read the docs for info on how to use it.

Add scroll() support

03 Feb 18:26
57938f9
Compare
Choose a tag to compare

Many thanks to @Tasm-Devil :)

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip install adafruit-circuitpython-framebuf.

Read the docs for info on how to use it.

Add image() for Linux PIL support

28 Dec 17:47
d0e9028
Compare
Choose a tag to compare
  • Add image() for Linux PIL support

To use in CircuitPython, simply install the Adafruit CircuitPython bundle.

To use in CPython, pip install adafruit-circuitpython-framebuf.

Read the docs for info on how to use it.

Add support for Sharp displays, add to PyPI

23 Dec 00:51
6aec69f
Compare
Choose a tag to compare
Merge pull request #6 from ladyada/master

fix line typo for non-1 lines, added new displaytype for SHARP memory displays

Initial version of 'soft' framebuf

22 Dec 05:30
72d80d6
Compare
Choose a tag to compare

A few displays like OLEDs use framebuf as an underlying matrix of pixels, we no longer include framebuf in CircuitPython builds (we'll be going to displayio) but this can suffice if you need it. Warning, it's a bit slow since its pure python!