I'm using displayio with small OLED displays, e.g. a SSD1306 based one with 64 x 32 px.
Example code:
import displayio
displayio.release_displays()
import board, busio
i2c = busio.I2C(board.GP3, board.GP2) # SCL, SDA
from i2cdisplaybus import I2CDisplayBus
display_bus = I2CDisplayBus(i2c, device_address=0x3C)
import adafruit_displayio_ssd1306
adafruit_displayio_ssd1306.SSD1306(display_bus, width=64, height=32)
print("0123456789")
The display shows 3 lines of text, where the first 2 lines are occupied by the Blinka logo and the Circuitpython version.
Only the third line is usable and shows the wanted output.
I would like to request a possibility to disable the logo/version output, such that the whole display area is available for text output.