Skip to main content

Meadow.Foundation.Displays.Ssd1331

Ssd1331
StatusStatus badge: working
Source codeGitHub
Datasheet(s)GitHub
NuGet packageNuGet Gallery for Meadow.Foundation.Displays.TftSpi

The SSD1331 is a display controller used to drive 16bpp (RGB565) color OLED displays over SPI. These displays are commonly found with a resolution of 96x64.

Code Example

MicroGraphics graphics;

public override Task Initialize()
{
Resolver.Log.Info("Initializing ...");

var spiBus = Device.CreateSpiBus();

Resolver.Log.Info("Create display driver instance");

var display = new St7796s
(
spiBus: spiBus,
resetPin: Device.Pins.D00,
chipSelectPin: Device.Pins.D02,
dcPin: Device.Pins.D01,
width: 320, height: 480
);

graphics = new MicroGraphics(display);
graphics.CurrentFont = new Font8x8();

return base.Initialize();
}

public override Task Run()
{
graphics.Clear();

graphics.DrawTriangle(10, 10, 50, 50, 10, 50, Color.Red);
graphics.DrawRectangle(20, 15, 40, 20, Color.Yellow, false);
graphics.DrawText(5, 5, "Meadow F7");

graphics.Show();

return base.Run();
}

Sample project(s) available on GitHub

Wiring Example

To wire a Ssd1331 to your Meadow board, connect the following:

Ssd1331Meadow Pin
LED-3V3
LED+GND
MOSIMOSI
SCKSCK
RESETD15
A0D14
CSD13
VCC3V3
GNDGND

It should look like the following diagram:

Wiring a Ssd1331 to a Meadow F7