Remarks
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 Ssd1331
(
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, Meadow.Foundation.Color.Red);
graphics.DrawRectangle(20, 15, 40, 20, Meadow.Foundation.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:
Syntax
public class St7796s : TftSpiBase, IGraphicsDisplay, ISpiPeripheral, IRotatableDisplay
Constructors
St7796s(ISpiBus, IDigitalOutputPort, IDigitalOutputPort, IDigitalOutputPort, int, int, ColorMode)
Create a new St7796s color display object
Declaration
public St7796s(ISpiBus spiBus, IDigitalOutputPort chipSelectPort, IDigitalOutputPort dataCommandPort, IDigitalOutputPort resetPort, int width = 320, int height = 480, ColorMode colorMode = ColorMode.Format12bppRgb444)
Parameters
Type | Name | Description |
---|---|---|
ISpiBus | spiBus | SPI bus connected to display |
IDigitalOutputPort | chipSelectPort | Chip select output port |
IDigitalOutputPort | dataCommandPort | Data command output port |
IDigitalOutputPort | resetPort | Reset output port |
int | width | Width of display in pixels |
int | height | Height of display in pixels |
ColorMode | colorMode | The color mode to use for the display buffer |
Remarks
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 Ssd1331
(
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, Meadow.Foundation.Color.Red);
graphics.DrawRectangle(20, 15, 40, 20, Meadow.Foundation.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:
St7796s(ISpiBus, IPin, IPin, IPin, int, int, ColorMode)
Create a new St7796s color display object
Declaration
public St7796s(ISpiBus spiBus, IPin chipSelectPin, IPin dcPin, IPin resetPin, int width = 320, int height = 480, ColorMode colorMode = ColorMode.Format12bppRgb444)
Parameters
Type | Name | Description |
---|---|---|
ISpiBus | spiBus | SPI bus connected to display |
IPin | chipSelectPin | Chip select pin |
IPin | dcPin | Data command pin |
IPin | resetPin | Reset pin |
int | width | Width of display in pixels |
int | height | Height of display in pixels |
ColorMode | colorMode | The color mode to use for the display buffer |
Remarks
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 Ssd1331
(
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, Meadow.Foundation.Color.Red);
graphics.DrawRectangle(20, 15, 40, 20, Meadow.Foundation.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:
Properties
DefaultColorMode
The default display color mode
Declaration
public override ColorMode DefaultColorMode { get; }
Property Value
Type | Description |
---|---|
ColorMode |
Overrides
Remarks
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 Ssd1331
(
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, Meadow.Foundation.Color.Red);
graphics.DrawRectangle(20, 15, 40, 20, Meadow.Foundation.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:
SupportedColorModes
The color modes supported by the display
Declaration
public override ColorMode SupportedColorModes { get; }
Property Value
Type | Description |
---|---|
ColorMode |
Overrides
Remarks
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 Ssd1331
(
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, Meadow.Foundation.Color.Red);
graphics.DrawRectangle(20, 15, 40, 20, Meadow.Foundation.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:
Methods
Initialize()
Initialize the display
Declaration
protected override void Initialize()
Overrides
Remarks
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 Ssd1331
(
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, Meadow.Foundation.Color.Red);
graphics.DrawRectangle(20, 15, 40, 20, Meadow.Foundation.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:
SetRotation(RotationType)
Set the display rotation
Declaration
public void SetRotation(RotationType rotation)
Parameters
Type | Name | Description |
---|---|---|
RotationType | rotation | The rotation value |
Remarks
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 Ssd1331
(
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, Meadow.Foundation.Color.Red);
graphics.DrawRectangle(20, 15, 40, 20, Meadow.Foundation.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: