├── .gitattributes ├── .github └── workflows │ └── tg-send.yml ├── LICENSE ├── README.md ├── README_EN.md ├── doc ├── examp.png └── scheme.png ├── examples └── demo │ └── demo.ino ├── keywords.txt ├── library.properties └── src └── GyverHC595.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverHC595/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/tg-send.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverHC595/HEAD/.github/workflows/tg-send.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverHC595/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverHC595/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverHC595/HEAD/README_EN.md -------------------------------------------------------------------------------- /doc/examp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverHC595/HEAD/doc/examp.png -------------------------------------------------------------------------------- /doc/scheme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverHC595/HEAD/doc/scheme.png -------------------------------------------------------------------------------- /examples/demo/demo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverHC595/HEAD/examples/demo/demo.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverHC595/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverHC595/HEAD/library.properties -------------------------------------------------------------------------------- /src/GyverHC595.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverHC595/HEAD/src/GyverHC595.h --------------------------------------------------------------------------------