├── .gitattributes ├── .github └── workflows │ └── tg-send.yml ├── LICENSE ├── README.md ├── README_EN.md ├── examples └── simple │ └── simple.ino ├── keywords.txt ├── library.properties └── src ├── NEC_timings.h ├── NecDecoder.h └── NecEncoder.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/NecDecoder/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/tg-send.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/NecDecoder/HEAD/.github/workflows/tg-send.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/NecDecoder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/NecDecoder/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/NecDecoder/HEAD/README_EN.md -------------------------------------------------------------------------------- /examples/simple/simple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/NecDecoder/HEAD/examples/simple/simple.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/NecDecoder/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/NecDecoder/HEAD/library.properties -------------------------------------------------------------------------------- /src/NEC_timings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/NecDecoder/HEAD/src/NEC_timings.h -------------------------------------------------------------------------------- /src/NecDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/NecDecoder/HEAD/src/NecDecoder.h -------------------------------------------------------------------------------- /src/NecEncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GyverLibs/NecDecoder/HEAD/src/NecEncoder.h --------------------------------------------------------------------------------