adafruit_displayio_ssd1306¶
DisplayIO driver for SSD1306 monochrome displays
- Author(s): Scott Shawcroft
Implementation Notes¶
Hardware:
- Monochrome 1.3” 128x64 OLED graphic display
- Monochrome 128x32 I2C OLED graphic display
- Monochrome 0.96” 128x64 OLED graphic display
- Monochrome 128x32 SPI OLED graphic display
- Adafruit FeatherWing OLED - 128x32 OLED
Software and Dependencies:
- Adafruit CircuitPython (version 5+) firmware for the supported boards: https://github.com/adafruit/circuitpython/releases
-
class
adafruit_displayio_ssd1306.SSD1306(bus, **kwargs)¶ SSD1306 driver
Parameters: -
is_awake¶ The power state of the display. (read-only)
Trueif the display is active,Falseif in sleep mode.Type: bool
-
sleep()¶ Put display into sleep mode.
Display uses < 10uA in sleep mode. Display remembers display data and operation mode active prior to sleeping. MP can access (update) the built-in display RAM.
-
wake()¶ Wake display from sleep mode
-