├── .gitignore ├── AUTHORS ├── DecodeIR.html ├── LICENSE.txt ├── Makefile ├── README.md ├── examples ├── DecodeIRDemo │ └── DecodeIRDemo.ino ├── IRremoteDecode │ └── IRremoteDecode.ino ├── InfraredDecode │ └── InfraredDecode.ino └── InfraredDecoderLCD │ ├── DecodeIRClass.cpp │ ├── DecodeIRClass.h │ └── InfraredDecoderLCD.ino ├── keywords.txt ├── library.properties ├── pics └── mega_decodeir.jpg └── src ├── DecodeIR.cpp ├── DecodeIR.h ├── decodePrintIr.cpp ├── decodePrintIr.h └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/Arduino-DecodeIR/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/Arduino-DecodeIR/HEAD/AUTHORS -------------------------------------------------------------------------------- /DecodeIR.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/Arduino-DecodeIR/HEAD/DecodeIR.html -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/Arduino-DecodeIR/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/Arduino-DecodeIR/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/Arduino-DecodeIR/HEAD/README.md -------------------------------------------------------------------------------- /examples/DecodeIRDemo/DecodeIRDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/Arduino-DecodeIR/HEAD/examples/DecodeIRDemo/DecodeIRDemo.ino -------------------------------------------------------------------------------- /examples/IRremoteDecode/IRremoteDecode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/Arduino-DecodeIR/HEAD/examples/IRremoteDecode/IRremoteDecode.ino -------------------------------------------------------------------------------- /examples/InfraredDecode/InfraredDecode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/Arduino-DecodeIR/HEAD/examples/InfraredDecode/InfraredDecode.ino -------------------------------------------------------------------------------- /examples/InfraredDecoderLCD/DecodeIRClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/Arduino-DecodeIR/HEAD/examples/InfraredDecoderLCD/DecodeIRClass.cpp -------------------------------------------------------------------------------- /examples/InfraredDecoderLCD/DecodeIRClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/Arduino-DecodeIR/HEAD/examples/InfraredDecoderLCD/DecodeIRClass.h -------------------------------------------------------------------------------- /examples/InfraredDecoderLCD/InfraredDecoderLCD.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/Arduino-DecodeIR/HEAD/examples/InfraredDecoderLCD/InfraredDecoderLCD.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/Arduino-DecodeIR/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/Arduino-DecodeIR/HEAD/library.properties -------------------------------------------------------------------------------- /pics/mega_decodeir.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/Arduino-DecodeIR/HEAD/pics/mega_decodeir.jpg -------------------------------------------------------------------------------- /src/DecodeIR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/Arduino-DecodeIR/HEAD/src/DecodeIR.cpp -------------------------------------------------------------------------------- /src/DecodeIR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/Arduino-DecodeIR/HEAD/src/DecodeIR.h -------------------------------------------------------------------------------- /src/decodePrintIr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/Arduino-DecodeIR/HEAD/src/decodePrintIr.cpp -------------------------------------------------------------------------------- /src/decodePrintIr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/Arduino-DecodeIR/HEAD/src/decodePrintIr.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bengtmartensson/Arduino-DecodeIR/HEAD/src/main.cpp --------------------------------------------------------------------------------