├── .gitattributes ├── .github └── workflows │ └── tg-send.yml ├── LICENSE ├── README.md ├── README_EN.md ├── examples └── test │ └── test.ino ├── keywords.txt ├── library.properties └── src ├── GyverIO.h ├── GyverIO_SPI.h ├── gio ├── gio.h ├── gio_arduino.h ├── gio_avr.h ├── gio_defs.h ├── gio_esp32.h └── gio_esp8266.h └── utils ├── PinIO.h ├── PinT.h ├── shift.cpp └── shift.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverIO/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/tg-send.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverIO/HEAD/.github/workflows/tg-send.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverIO/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverIO/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverIO/HEAD/README_EN.md -------------------------------------------------------------------------------- /examples/test/test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverIO/HEAD/examples/test/test.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverIO/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverIO/HEAD/library.properties -------------------------------------------------------------------------------- /src/GyverIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverIO/HEAD/src/GyverIO.h -------------------------------------------------------------------------------- /src/GyverIO_SPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverIO/HEAD/src/GyverIO_SPI.h -------------------------------------------------------------------------------- /src/gio/gio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverIO/HEAD/src/gio/gio.h -------------------------------------------------------------------------------- /src/gio/gio_arduino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverIO/HEAD/src/gio/gio_arduino.h -------------------------------------------------------------------------------- /src/gio/gio_avr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverIO/HEAD/src/gio/gio_avr.h -------------------------------------------------------------------------------- /src/gio/gio_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverIO/HEAD/src/gio/gio_defs.h -------------------------------------------------------------------------------- /src/gio/gio_esp32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverIO/HEAD/src/gio/gio_esp32.h -------------------------------------------------------------------------------- /src/gio/gio_esp8266.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverIO/HEAD/src/gio/gio_esp8266.h -------------------------------------------------------------------------------- /src/utils/PinIO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverIO/HEAD/src/utils/PinIO.h -------------------------------------------------------------------------------- /src/utils/PinT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverIO/HEAD/src/utils/PinT.h -------------------------------------------------------------------------------- /src/utils/shift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverIO/HEAD/src/utils/shift.cpp -------------------------------------------------------------------------------- /src/utils/shift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/GyverIO/HEAD/src/utils/shift.h --------------------------------------------------------------------------------