Skip to content

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

License

Notifications You must be signed in to change notification settings

johannesegger/SenseHatNet

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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