128x32 OLED display with teensy 3.2

Status
Not open for further replies.
I am using teensy 3.2 along with audio adapter, and then I am also using pin 0 to pin 4. It is still possible to use 128x32 OLED display. I am not able to find tutorial explaining interfacing teensy 3.2 with 128x32 OLED using I2C.

Regards,

Tapas
 
Not sure, might help to know which OLED display.

I believe the Audio adapter uses I2C on standard pins A4-A5. So you would need to have the display use the default I2C pins.

Then the question is, is there a display driver for your display and does the driver work well with other I2C devices...
 
I know that ssd1306 128x64 oled screens work with teensy 3.2/lc

#include <i2c_t3.h>
#include <Adafruit_GFX.h>
#include "Adafruit_SSD1306.h"

I put a local copy of Adafruit_SSD1306.h in my sketch folder and changed the include for wire.h to i2c_t3.h.
Can't remember if I had to do much more than that.
If that is any help.
 
Status
Not open for further replies.
Back
Top