Hi there,
I’ve wired up a OLED 0.96 inch SSD1306 SPI display into the 40pin header using the below wire map:
I then ran the below code, which runs, but nothing displays on the screen. I double checked the wiring but wasnt sure what to tackle next - any ideas?
Below is the code
import adafruit_ssd1306
import board
import busio
from digitalio import DigitalInOut
spi = busio.SPI(board.SCK, board.MOSI, board.MISO)
reset_pin = DigitalInOut(board.D17) # any pin!
cs_pin = DigitalInOut(board.D18) # any pin!
dc_pin = DigitalInOut(board.D8) # any pin!
oled = adafruit_ssd1306.SSD1306_SPI(128, 64, spi, dc_pin, reset_pin, cs_pin)
# Clear display.
oled.fill(1)
oled.show()
Based on the code found here also, it should just work with the Nvidia:


