Skip to content

paevenson/raspberrysharpGPIO

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

raspberrysharpGPIO

C# GPIO library for the raspberry pi

using System; using RaspberrySharpGPIOLib; using System.Threading; namespace raspberryPiGpioHelloWorld { class Program { static void Main(string[] args) { RaspberrySharpGPIO.Instance[GPIO.gpio26].Direction = Pin.DIRECTION.OUT; RaspberrySharpGPIO.Instance[GPIO.gpio26].Value = 1; Thread.Sleep(1000); RaspberrySharpGPIO.Instance.CleanUpAllPins(); } } }

About

C# GPIO library for the raspberry pi

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages