Adafruit_CircuitPython_DisplayIO_SSD1306
Adafruit_CircuitPython_DisplayIO_SSD1306 copied to clipboard
DisplayIO driver for SSD1306 monochrome OLED displays
On 9.0, the current version prints warnings at import: ``` Adafruit CircuitPython 9.0.0-rc.1-1-g7e7b2a4154-dirty on 2024-03-17; Adafruit Macropad RP2040 with rp2040 >>> import adafruit_displayio_ssd1306 FutureWarning: FourWire moved from displayio to fourwire...
Duplicating #42 since it cannot be re-opened. This is effectively the same as adafruit/Adafruit_CircuitPython_DisplayIO_SH1106#17, with the same repro code. ```python import board import displayio import i2cdisplaybus import adafruit_displayio_ssd1306 from time...
Not sure about `wake()`, but `sleep()` were throwing `TypeError: object with buffer protocol required` at me.
The following code (supplied by `todbot` on Discord and modified) shows that the `bitmap_label` does _not_ update (or very slowly/sporadically) while the "regular" version flies. ```python import time, board, displayio,...
I noticed 100% CPU with my application on a Raspberry Pi, even I have several seconds sleep in my loop. I use auto_refresh = False I can reproduce that behaviour...