Teensy 4.1 & Adafruit SSD1327 Grayscale 1.5" 128x128 OLED Graphic Display

Fozz

New member
Hi,

Teensy has support for Adafruit SSD1306 small OLED displays:
https://www.pjrc.com/teensy/td_libs_SSD1306.html

That documentation references : Adafruit and driver chip SSD1306

This is one of those Adafruit small OLED displays:
https://www.adafruit.com/product/4741

However, it's driver chip is SSD1327, not SSD1306.

This is the Adafruit "learn guide":
https://learn.adafruit.com/adafruit-grayscale-1-5-128x128-oled-display?view=all

This is the Adafruit Github example:
https://github.com/adafruit/Adafruit_SSD1327/blob/master/examples/ssd1327_test/ssd1327_test.ino

It includes: Adafruit_SSD1327.h

Question: In the Arduino/Teensyduion IDE can I install Adafruit_SSD1327.h instead of using the Adafruit_SSD1306.zip library.

Thanks,
Bill
 
I went to the Adafruit learning guide, and it has a link to their SSD1327 library on Github. It's a library, with both CPP and H files, and you can install it via the Arduino IDE. Just go to the library manager and type in SSD1327 to the search bar and it should come up. Adafruit's libraries typical have dependencies, so you can install whichever of those are needed, and then you should be able to create sketches that use your display.
 
Back
Top