https://github.com/simsso/shiftregister74hc595
Arduino library that simplifies the usage of shift registers
https://github.com/simsso/shiftregister74hc595
74hc595 arduino library shift-register
Last synced: 8 months ago
JSON representation
Arduino library that simplifies the usage of shift registers
- Host: GitHub
- URL: https://github.com/simsso/shiftregister74hc595
- Owner: Simsso
- License: mit
- Created: 2015-08-04T00:26:22.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2022-09-14T21:26:40.000Z (over 3 years ago)
- Last Synced: 2023-10-20T23:08:37.181Z (about 2 years ago)
- Topics: 74hc595, arduino, library, shift-register
- Language: C++
- Homepage: https://timodenk.com/blog/shift-register-arduino-library/
- Size: 34.2 KB
- Stars: 129
- Watchers: 13
- Forks: 38
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ShiftRegister 74HC595 Arduino Library
This library simplifies the usage of shift registers. For instance, it allows to set pins of the shift register just like normal Arduino pins:
```
sr.set(1, HIGH)
```
Please find the detailed **documentation** at https://timodenk.com/blog/shift-register-arduino-library/.
An **example** sketch can be found in this repository at [/examples/example/example.ino](https://github.com/Simsso/ShiftRegister74HC595/blob/master/examples/example/example.ino).