micropython-ssd1306 icon indicating copy to clipboard operation
micropython-ssd1306 copied to clipboard

A fork of the driver for SSD1306 displays to make it installable via upip

Results 11 micropython-ssd1306 issues
Sort by recently updated
recently updated
newest added

I would like to leave a note to folks also having the problem that the SSD1306 only displays random dots (=garbage). I had this problem on my HELTEC_Wifi_LoRa_32_v3 board banging...

Hi, does this lib work also with an seduino XIAO or on an pi Pico?

on a raspberry pi, running Bullseye, running Thonny, Tools, Manage Packages, search for SSD1306, try to install micropython-ssd1306 yields the following error: ERROR: Could not find a version that satisfies...

Hello, first of all, thank you very much for the contribution, it is very appreciated. I only have a small doubt, is there any function that allows you to change...

Since upip has been replaced by mip, and the SSD1306 library is now in [micropython-lib](https://github.com/micropython/micropython-lib), you can now install the current version of this library via: ``` import mip mip.install("ssd1306")...

Added a `rotate180()` function and its accessory, `invert()` See [this repo](https://github.com/Kongduino/ssd1306_mp).

Not work multiple display. Work only latest ininztalize. if oled1 = SSD1306_SPI(128, 64, spi, Pin(17),Pin(20), Pin(16)) oled3 = SSD1306_SPI(128, 64, spi, Pin(17),Pin(20), Pin(13)) oled2 = SSD1306_SPI(128, 64, spi, Pin(17),Pin(20), Pin(14))...

The Adafruit link in the README points to a missing page, this replaces it with a current version of the Python/CircuitPython tutorial for SSD1306. I couldn't find even a [WaybackMachine...

This pull request adds `.pyi` type stub files to enhance IDE support for the library. These stubs provide type hints and docstrings for all classes and methods, making development easier...