-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from Simsso/link-adjustments
Documentation link adjustments
- Loading branch information
Showing
7 changed files
with
23 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
# ShiftRegister 74HC595 Arduino Library | ||
This library simplifies shift registers usage. It allows, for instance, to set shift register pins just like normal Arduino pins: `sr.set(1, HIGH)`. | ||
|
||
The **documentation** is available at http://shiftregister.simsso.de/. | ||
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) | ||
``` | ||
|
||
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). | ||
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). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
ShiftRegister74HC595 KEYWORD1 | ||
setAll KEYWORD2 | ||
setAll_P KEYWORD2 | ||
getAll KEYWORD2 | ||
set KEYWORD2 | ||
setNoUpdate KEYWORD2 | ||
updateRegisters KEYWORD2 | ||
setAllLow KEYWORD2 | ||
setAllHigh KEYWORD2 | ||
get KEYWORD2 | ||
getAll KEYWORD2 | ||
setNoUpdate KEYWORD2 | ||
updateRegisters KEYWORD2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
name=ShiftRegister74HC595 | ||
version=1.3.0 | ||
version=1.3.1 | ||
author=Timo Denk (timodenk.com) | ||
maintainer=Timo Denk (timodenk.com) | ||
sentence=Simplifies usage of shift registers, designed for the 74HC595. | ||
paragraph=Allows to set individual pins and takes care of shifting out the bytes. Can be used in combination with multiple shift registers which are stacked in serial. | ||
category=Device Control | ||
url=https://shiftregister.simsso.de/ | ||
url=https://timodenk.com/blog/shift-register-arduino-library/ | ||
architectures=* | ||
includes=ShiftRegister74HC595.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
/* | ||
ShiftRegister74HC595.cpp - Library for simplified control of 74HC595 shift registers. | ||
Created by Timo Denk (www.timodenk.com), Nov 2014. | ||
Additional information is available at http://shiftregister.simsso.de/ | ||
Developed and maintained by Timo Denk and contributers, since Nov 2014. | ||
Additional information is available at https://timodenk.com/blog/shift-register-arduino-library/ | ||
Released into the public domain. | ||
*/ | ||
|
||
#include <Arduino.h> | ||
|
||
#include "ShiftRegister74HC595.h" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters