#Does anyone know why the repl only takes
1 messages · Page 1 of 1 (latest)
I thought it was an issue with my oled not being compatible with the default driver settings, but I've been playing with the library hardware settings (hence the inverted display), but I don't think thats the issue anymore.
There isn't much I can change from the main code that would affect the location of the repl... I'm not even sure how it works as is tbh 😀
i2c = busio.I2C(scl=board.GP21, sda=board.GP20)
display_bus = displayio.I2CDisplay(i2c, device_address = 0x3C)
display = adafruit_displayio_ssd1306.SSD1306(display_bus, width=128, height=32)```
I think maybe I need to dig into the displayio library...
there's a trailing line ending, so you may want to do something like print("\nSome stuff", end="")
if you want scrolling text like the serial console, but without the Blinka taking up space, here's an option <#help-with-circuitpython message>
Nice! That works!