nanoFramework.Iot.Device.Sn74hc595 1.2.907

Prefix Reserved
dotnet add package nanoFramework.Iot.Device.Sn74hc595 --version 1.2.907
                    
NuGet\Install-Package nanoFramework.Iot.Device.Sn74hc595 -Version 1.2.907
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="nanoFramework.Iot.Device.Sn74hc595" Version="1.2.907" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="nanoFramework.Iot.Device.Sn74hc595" Version="1.2.907" />
                    
Directory.Packages.props
<PackageReference Include="nanoFramework.Iot.Device.Sn74hc595" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add nanoFramework.Iot.Device.Sn74hc595 --version 1.2.907
                    
#r "nuget: nanoFramework.Iot.Device.Sn74hc595, 1.2.907"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package nanoFramework.Iot.Device.Sn74hc595@1.2.907
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=nanoFramework.Iot.Device.Sn74hc595&version=1.2.907
                    
Install as a Cake Addin
#tool nuget:?package=nanoFramework.Iot.Device.Sn74hc595&version=1.2.907
                    
Install as a Cake Tool

SN74HC595 -- 8-bit shift register

SN74HC595 is a 8-bit shift register. Per the datasheet, the SN74HC595 is a "8-Bit Shift Register With 3-State Output Register". The Sn74hc595 binding is based on and is compatible with the more general ShiftRegister binding. The Sn74hc595 binding adds the ability clear the storage register with a single pin. Either binding can be used to control the SN74HC595.

shift-register

The binding abstracts the interaction with the data register, the register clock and other shift register capabilities. The binding enables interaction via GPIO or SPI.

Documentation

Usage

The following example code demonstrates how to use the SN74HC595 with its most basic functions.

Sn74hc595 sr = new(Sn74hc595PinMapping.Minimal);

// Light up three of first four LEDs
sr.ShiftBit(1);
sr.ShiftBit(1);
sr.ShiftBit(0);
sr.ShiftBit(1);
sr.Latch();

// Display for 1s
Thread.Sleep(1000);

// Write to all 8 registers with a byte value
// ShiftByte latches data by default
sr.ShiftByte(0b_1000_1101);

The following diagram demonstrates the required wiring for the Minimal pin mapping. In particular, OE must be wired to ground, and SRCLR must be wired high.

SN74HC595 Minimal pin mapping

The following example demonstrates using additional features and requires different wiring.

Sn74hc595 sr = new(Sn74hc595PinMapping.Complete);

// Write to all 8 registers with a byte value
// ShiftByte latches data by default
sr.ShiftByte(0b_1000_1101);

// Display for 1s
Thread.Sleep(1000);

// disable output temporarily
sr.OutputEnable = false;

// Display for 1s
Thread.Sleep(1000);

// re-enable output
sr.OutputEnable = true;

// clear storage before writing new values
sr.ClearStorage();

// Light up three of first four LEDs
sr.ShiftBit(1);
sr.ShiftBit(1);
sr.ShiftBit(0);
sr.ShiftBit(1);
sr.Latch();

The following diagram demonstrates the required wiring for the Complete pin mapping.

SN74HC595 Minimal pin mapping

If you want to use SPI, see the ShiftRegister binding, which includes more information on SPI.

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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
1.2.907 181 10/2/2025
1.2.869 252 4/2/2025
1.2.864 231 4/2/2025
1.2.852 242 3/11/2025
1.2.835 201 2/27/2025
1.2.833 185 2/27/2025
1.2.829 183 2/27/2025
1.2.822 183 2/26/2025
1.2.775 179 2/4/2025
1.2.772 172 2/4/2025
1.2.767 179 2/3/2025
1.2.762 207 2/1/2025
1.2.759 180 1/31/2025
1.2.755 197 1/31/2025
1.2.737 197 1/13/2025
1.2.718 178 12/30/2024
1.2.704 168 12/18/2024
1.2.696 175 12/16/2024
1.2.673 196 10/23/2024
1.2.635 208 8/30/2024
1.2.631 197 8/28/2024
1.2.590 193 7/17/2024
1.2.570 217 6/14/2024
1.2.560 213 5/29/2024
1.2.548 203 5/15/2024
1.2.436 585 11/10/2023
1.2.416 404 11/8/2023
1.2.329 718 5/26/2023
1.2.313 647 5/12/2023
1.2.302 715 5/10/2023
1.2.297 684 5/3/2023
1.2.273 730 3/17/2023
1.2.203 841 12/28/2022
1.2.159 925 11/14/2022
1.2.158 932 11/13/2022
1.2.153 890 11/5/2022
1.2.141 949 10/25/2022
1.2.122 1,013 10/12/2022
1.2.114 925 10/8/2022
1.2.104 962 9/24/2022
1.2.95 993 9/22/2022
1.2.87 1,034 9/15/2022
1.2.73 969 9/8/2022
1.2.5 1,001 7/13/2022
1.1.141.41205 1,022 7/6/2022
1.1.116.8772 1,017 6/24/2022
1.1.113.2032 920 6/23/2022
1.1.58.10097 996 5/23/2022
1.1.27 965 4/26/2022
1.1.20 991 4/21/2022
1.1.3 1,043 4/15/2022
1.1.1 989 4/14/2022
1.0.277-preview.128 227 3/26/2022
1.0.277-preview.126 224 3/25/2022
1.0.277-preview.125 225 3/25/2022
1.0.277-preview.113 223 3/20/2022
1.0.277-preview.112 223 3/19/2022
1.0.277-preview.103 235 3/14/2022
1.0.277-preview.102 229 3/11/2022
1.0.277-preview.99 238 3/10/2022
1.0.277-preview.85 229 2/25/2022
1.0.277-preview.60 251 2/4/2022
1.0.277-preview.32 253 1/27/2022
1.0.277-preview.17 242 1/24/2022
1.0.277-preview.1 248 1/11/2022
1.0.259 960 12/9/2021
1.0.218 313 10/18/2021
1.0.155 286 8/31/2021
1.0.148 278 7/22/2021
1.0.105 389 5/29/2021
1.0.70 309 5/26/2021