Skip to content

eXoCooLd/Waveshare.EPaperDisplay

Repository files navigation

Waveshare.EPaperDisplay

Library for .Net Core to control a Waveshare E-Paper Display

Currently supported Models:

  • Waveshare 7.5inch e-Paper (B)
  • Waveshare 7.5inch e-Paper V2
  • Waveshare 7.5inch e-Paper V2 (B)
  • Waveshare 5.65inch e-Paper (F)

Based on:

Specification from:

C Example Code from: https://github.com/waveshare/e-Paper/tree/master/RaspberryPi_JetsonNano/c

NuGet Package:

https://www.nuget.org/packages/eXoCooLd.Waveshare.EPaperDisplay/

Usage for a public static method:

public static void Main()
{
	const string fileName = "yourImage.bmp";
	using var bitmap = new Bitmap(Image.FromFile(fileName, true));

	using var ePaperDisplay = EPaperDisplay.Create(EPaperDisplayType.WaveShare7In5Bc);
  
	ePaperDisplay.Clear();
	ePaperDisplay.WaitUntilReady();
	ePaperDisplay.DisplayImage(bitmap);
}

Example running on Raspberry Pi 3

Screenshot

License

MIT

Releases

No releases published

Packages

No packages published

Languages