Skip to main content

Meadow.Foundation.FeatherWings.NeoPixelWing

NeoPixelWing
StatusStatus badge: working
Source codeGitHub
NuGet packageNuGet Gallery for Meadow.Foundation.FeatherWings.NeoPixelWing

Code Example

NeoPixelWing neoWing;
MicroGraphics graphics;

public override Task Initialize()
{
Console.WriteLine("Initializing ...");

neoWing = new NeoPixelWing(Device.CreateSpiBus());

graphics = new MicroGraphics(neoWing);

return Task.CompletedTask;
}

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

graphics.DrawRectangle(0, 0, 8, 4, false);

graphics.Show();

return Task.CompletedTask;
}

Sample project(s) available on GitHub