Meadow.Foundation.Displays.St7796s
St7796s | |
---|---|
Status | |
Source code | GitHub |
Datasheet(s) | GitHub |
NuGet package |
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: 96, height: 64
);
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 St7796s to your Meadow board, connect the following:
St7796s | Meadow Pin |
---|---|
GND | GND |
VCC | 3V3 |
SCL | SCK |
SDA | MOSI |
CS | D02 |
DC | D01 |
RESET | D00 |
It should look like the following diagram: