/SenseHatNet

.NET Core API for Raspberry Pi Sense HAT running on Linux

Primary LanguageC#MIT LicenseMIT

SenseHatNet

.NET library for Raspberry Pi Sense HAT running on Linux. Inspired by and partially ported from the Sense HAT Python library.

image

Check out this sample application on how to build and run a .NET application on a Raspberry Pi (works natively and also using Docker).

Getting started

  • Create a new console app (e.g. dotnet new console -o SenseHatNetSample).
  • Install SenseHatNet from NuGet (e.g. navigate inside the project directory and run dotnet add package SenseHatNet).
  • Explore namespace Sense (e.g. Sense.Led.LedMatrix.ShowMessage("Hello World");).
  • Explore the sample application on how to build and run the app.

Acknowledgements