Documentation & Downloads – 4-Pin I2C OLED (128×64 and 128×32)
If you need an Arduino library, this is the one you want:
https://github.com/adafruit/Adafruit_SSD1306
For our product photos, the default example was modified in setup() as shown below (for the 128×32 display):
display.setTextSize(2); display.setTextColor(WHITE); display.setCursor(10,12); display.println(“[initeq]”); display.setTextSize(1); display.setCursor(105,12); display.println(“TM”); display.display(); |