tinygo-org / drivers

TinyGo drivers for sensors, displays, wireless adaptors, and other devices that use I2C, SPI, GPIO, ADC, and UART interfaces.
https://tinygo.org
BSD 3-Clause "New" or "Revised" License
583 stars 180 forks source link

SSD1327 OLED Support #316

Open rsbohn opened 2 years ago

rsbohn commented 2 years ago

I want to use the SSD1327 based 128x128 Grayscale OLED breakout over I2C.

Would I just clone the SSD1306 driver and modify it?

I have the SSD1306 working with the Adafruit Feather M4.

deadprogram commented 2 years ago

Would I just clone the SSD1306 driver and modify it?

That certainly seems the easiest way to start. Most of the commands appear to be the same, from a quick glance.

Once you have it working, then perhaps looking to avoid repeated code?

Looking forward to your pull request! :)