SimpleGPIO 2.0.0-beta.1
See the version list below for details.
dotnet add package SimpleGPIO --version 2.0.0-beta.1
NuGet\Install-Package SimpleGPIO -Version 2.0.0-beta.1
<PackageReference Include="SimpleGPIO" Version="2.0.0-beta.1" />
paket add SimpleGPIO --version 2.0.0-beta.1
#r "nuget: SimpleGPIO, 2.0.0-beta.1"
// Install SimpleGPIO as a Cake Addin #addin nuget:?package=SimpleGPIO&version=2.0.0-beta.1&prerelease // Install SimpleGPIO as a Cake Tool #tool nuget:?package=SimpleGPIO&version=2.0.0-beta.1&prerelease
SimpleGPIO
A simple, low-ceremony GPIO library for all your IoT needs
Overview
SimpleGPIO
takes a high-level, object-oriented approach to IoT programming, in the same way that high-level programming languages provide features that help abstract what's happening on the metal away from the code.
Requirements
SimpleGPIO
is a .NET Standard 2.0 library, and therefore should work with all actively supported .NET runtimes.
Installation
Simply add the SimpleGPIO
library to your project from NuGet.
Initialization
Instantiate a new board to be able to access its GPIO header:
var pi = new RaspberryPi();
If you're using a dependency injection container, you can register the board as a singleton to be used elsewhere in the application:
services.AddSingleton<RaspberryPi>();
Accessing GPIO pins
GPIO pins can be accessed by both their physical location on the board, and/or their Broadcom identifier GPIO#.
var redLED = pi.Pin16;
var sameRedLED = pi.GPIO23;
Moving electrons
SimpleGPIO
provides many ways to turn power on or off, depending on your preferences.
The simplest way is to use the built-in helper methods:
redLED.TurnOn();
redLED.TurnOff();
If you prefer assigning values:
redLED.Power = PowerValue.On;
redLED.Power = PowerValue.Off;
At the lowest level, you can directly set the voltage going out of the pin:
redLED.Voltage = Voltage.High; //on
redLED.Voltage = Voltage.Low; //off
Power Modes
All of the above examples assume the default Direct
power mode, where the positive terminal of the LED is connected to the GPIO pin, and the negative terminal is connected to the ground pin.
If, instead, you want to supply constant power by, e.g. the 3v3 pin, and the have the GPIO pin supply (or not supply) resistance, you can use the Differential
power mode, where PowerValue.On == Voltage.Low
and PowerValue.Off == Voltage.High
:
var yellowLED = pi.Pin18;
yellowLED.PowerMode = PowerMode.Differential;
yellowLED.TurnOn();
Timed Power
Pins can be turned on or off for specific lengths of time via the following:
var led = pi.Pin18;
led.TurnOnFor(TimeSpan.FromSeconds(1)); //will turn off after 1 second
led.TurnOn();
led.TurnOffFor(TimeSpan.FromSeconds(0.5)); //will turn back on after 0.5 seconds
Techno Dance Parties
There are some helper methods for toggling values. If power is currently on, toggling it will turn it off; if power is off, toggling will turn it on:
redLED.Toggle();
If you want to repeat the toggle at a given frequency, for a set amount of time, pass in the frequency and a TimeSpan
as parameters:
redLED.Toggle(3, TimeSpan.FromSeconds(5));
This will flash the red LED 3 times per second, for 5 seconds.
Alternatively, you can toggle power a set number of times by passing in a number as the second parameter. The following will flash the red LED 3 times over 1.5 seconds:
redLED.Toggle(2, 3);
What about inputs?
Input components such as buttons can be declared the same way as output components, and the Power
and Voltage
can be read from the new variable:
var button = pi.Pin11;
var isPressed = button.Power == PowerValue.On;
The Direct
Power Mode for an input component expects power from e.g. the 3v3 pin, so that electricity flows through to the GPIO pin when the button is depressed.
Reacting to Change
Three methods are provided on a pin that accept an Action
as a parameter, so that when that pin's state changes, some subsequent steps can be performed:
var button = pi.Pin11;
var redLED = pi.Pin16;
var buzzer = pi.Pin18;
button.OnPowerOn(() => redLED.TurnOn());
button.OnPowerOff(() => redLED.TurnOff());
redLED.OnPowerChange(() => buzzer.Toggle(1, 1));
Whenever the button is pressed down, the LED will turn on. When the button is released, the LED will turn off. Whenever the LED turns on or off, the buzzer will beep for half a second (reminder why: because Toggle will complete a single cycle at 1Hz, which means 0.5s on, then 0.5s off).
Cleaning up
If you want to turn off everything that was turned on while your application was running, simply Dispose()
of your RaspberryPi
at the end of your code.
pi.Dispose();
This will turn off and close all open GPIO pins. As with all IDisposable
s, this also works if you wrap the RaspberryPi
you're using in a using(){}
block.
Components
Several components have been implemented to help make development easier.
RGB LED
The RGB LED contains a separate pin for red, green, and blue, which can be combined to show different colors.
var redPin = pi.Pin11;
var greenPin = pi.Pin16;
var bluePin = pi.Pin18;
var rgbLED = new RGBLED(redPin, greenPin, bluePin);
rgbLED.TurnRed();
rgbLED.TurnOrange();
rgbLED.TurnYellow();
rgbLED.TurnGreen();
rgbLED.TurnCyan();
rgbLED.TurnBlue();
rgbLED.TurnPurple();
rgbLED.TurnWhite();
rgbLED.TurnOff();
Rotary Encoder
Rotary encoders have actions that can be performed when the dial is turned.
var dial = new RotaryEncoder(clockPin, dataPin);
dial.OnIncrease(() => Console.WriteLine("up"));
dial.OnDecrease(() => Console.WriteLine("down"));
Built-in button functionality is not yet supported.
Seven-Segment Display
Seven-segment displays are currently supported for direct connections to GPIO pins (support for bit-shift registers coming soon) and can be passed a character (all ASCII letters, numbers, and several other symbols)
var display = new SevenSegmentDisplay(centerPin, upperLeftPin, topPin, upperRightPin, lowerLeftPin, bottomPin, lowerRightPin, /*optional*/decimalPin);
display.Show('A');
display.Show('B');
display.Show('C');
display.Show('1');
display.Show('2');
display.Show('3');
Custom characters can also be displayed with:
//same order: center, upper-left, top, upper-right, lower-left, bottom, lower-right, decimal (optional)
display.SetPowerValues(PowerValue.On, PowerValue.Off, PowerValue.On, PowerValue.Off, PowerValue.On, PowerValue.Off, PowerValue.On, PowerValue.Off);
Bidirectional Motor
The wiring required to safely run a motor is rather complicated. The code, however, can be quite eloquent. The Motor
component assumes an L293D-compatible driver.
var enabledPin = pi.Pin11;
var clockwisePin = pi.Pin13; //name assumes connected to L293D pin 1A
var counterclockwisePin = pi.Pin15; // name assumes connected to L293D pin 2A
var motor = new Motor(enabledPin, clockwisePin, counterclockwisePin);
motor.Direction = Rotation.Clockwise;
motor.Start();
motor.Stop();
motor.Direction = Rotation.Counterclockwise;
motor.Start();
motor.Coast();
motor.TurnClockwise();
motor.TurnCounterclockwise();
motor.TurnClockwiseFor(TimeSpan.FromSeconds(1));
motor.TurnCounterclockwiseFor(TimeSpan.FromSeconds(2), true); //optional parameter to coast instead of stop
If you never need to coast (only stop) and your enabled
pin is always on (e.g. 3.3 or 5V), you can pass null
as the first constructor parameter.
If using all 4 inputs on a single driver, declare another Motor
to handle inputs 3 and 4.
To drive a single-direction motor (by only having input 1 connected), simply pass null
as the counterclockwisePin
to the Motor
constructor. Counterclockwise methods are not expected to function under this condition.
Bit Shift Register
A bit shift register allows you to control more outputs than you have inputs. The BitShiftRegister
component abstracts the implementation details of the integrated circuit away, so you can simply send the data you want as a byte
!
var enabledPin = pi.Pin11;
var dataPin = pi.Pin13;
var shiftPin = pi.Pin15;
var outputPin = pi.Pin16; //aka "latch"
var clearPin = pi.Pin18;
var bsr = new BitShiftRegister(enabledPin, dataPin, shiftPin, outputPin, clearPin);
bsr.SetValue(255); //sets all 8 bits to On
bsr.SetValue(0b11111111); //does the same
bsr.SetValue(0b10101010); //these two are also identical to each other
bsr.SetPowerValues(PowerValue.On, PowerValue.Off, PowerValue.On, PowerValue.Off, PowerValue.On, PowerValue.Off, PowerValue.On, PowerValue.Off);
//you can also accomplish this more manually
dataPin.TurnOn();
shiftPin.Spike();
dataPin.TurnOff();
shiftPin.Spike();
outputPin.Spike();
Similar to the Motor
component, the enabled
and clear
parameters are optional; if you choose to have the register always on/enabled by connecting it to the 3.3 or 5V rail, set the first param to null
. If you never need to clear, and that pin is also connected to 3.3 or 5V, just leave the last param out.
"Wow, this is great! How can I help?"
First, thank you for your enthusiasm! I'd love feedback on how you felt using this. If you had an awesome experience, let me know on Twitter. If you had any problems, feel free to file an issue.
If you're looking to contribute code, but don't have any ideas of your own, there are some specific things I'd love help with over in the Issues tab!
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- System.Device.Gpio (>= 1.5.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.1 | 429 | 11/9/2022 |
2.0.0 | 331 | 12/30/2021 |
2.0.0-beta.5 | 133 | 12/28/2021 |
2.0.0-beta.4 | 132 | 12/28/2021 |
2.0.0-beta.3 | 124 | 12/23/2021 |
2.0.0-beta.2 | 135 | 12/22/2021 |
2.0.0-beta.1 | 188 | 11/12/2021 |
1.1.0 | 1,308 | 8/19/2018 |
1.0.0 | 937 | 6/28/2018 |