├── .gitattributes ├── .gitignore ├── CHANGELOG.txt ├── IRLib.cpp ├── IRLib.h ├── IRLibMatch.h ├── IRLibRData.h ├── IRLibTimer.h ├── LICENSE.txt ├── README.md ├── examples ├── DirecTV │ └── DirecTV.ino ├── GIcable │ └── GIcable.ino ├── IRanalyze │ └── IRanalyze.ino ├── IRfreq │ └── IRfreq.ino ├── IRhashdecode │ └── IRhashdecode.ino ├── IRpattern │ └── IRpattern.ino ├── IRrecord │ └── IRrecord.ino ├── IRrecvDump │ └── IRrecvDump.ino ├── IRrecvDumpFreq │ └── IRrecvDumpFreq.ino ├── IRsendDemo │ └── IRsendDemo.ino ├── IRsendJVC │ └── IRsendJVC.ino ├── IRserial_remote │ ├── IRserial_remote.ino │ ├── IRserial_remote.py │ ├── POV-Ray │ │ └── remotebg.pov │ ├── click.wav │ └── remotebg.png ├── IRservo │ └── IRservo.ino ├── Samsung36 │ └── Samsung36.ino ├── pinoccio │ ├── IRfreqScout │ │ ├── IRfreqScout.ino │ │ └── version.h │ ├── IRrecvDumpFreqScout │ │ ├── IRrecvDumpFreqScout.ino │ │ └── version.h │ ├── IRrecvDumpScout │ │ ├── IRrecvDumpScout.ino │ │ └── version.h │ ├── IRsendScout │ │ ├── IRsendScout.ino │ │ └── version.h │ ├── README.txt │ └── html │ │ ├── button.png │ │ ├── index.html │ │ ├── iriopinoccio.png │ │ ├── iriopinoccio1.png │ │ ├── remote.css │ │ └── remote.js └── rcmm │ └── rcmm.ino └── manuals ├── IRLibReference.docx ├── IRLibReference.pdf └── Users Manual for IRLib - Chris Young.epub /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /IRLib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/IRLib.cpp -------------------------------------------------------------------------------- /IRLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/IRLib.h -------------------------------------------------------------------------------- /IRLibMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/IRLibMatch.h -------------------------------------------------------------------------------- /IRLibRData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/IRLibRData.h -------------------------------------------------------------------------------- /IRLibTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/IRLibTimer.h -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/README.md -------------------------------------------------------------------------------- /examples/DirecTV/DirecTV.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/DirecTV/DirecTV.ino -------------------------------------------------------------------------------- /examples/GIcable/GIcable.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/GIcable/GIcable.ino -------------------------------------------------------------------------------- /examples/IRanalyze/IRanalyze.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/IRanalyze/IRanalyze.ino -------------------------------------------------------------------------------- /examples/IRfreq/IRfreq.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/IRfreq/IRfreq.ino -------------------------------------------------------------------------------- /examples/IRhashdecode/IRhashdecode.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/IRhashdecode/IRhashdecode.ino -------------------------------------------------------------------------------- /examples/IRpattern/IRpattern.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/IRpattern/IRpattern.ino -------------------------------------------------------------------------------- /examples/IRrecord/IRrecord.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/IRrecord/IRrecord.ino -------------------------------------------------------------------------------- /examples/IRrecvDump/IRrecvDump.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/IRrecvDump/IRrecvDump.ino -------------------------------------------------------------------------------- /examples/IRrecvDumpFreq/IRrecvDumpFreq.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/IRrecvDumpFreq/IRrecvDumpFreq.ino -------------------------------------------------------------------------------- /examples/IRsendDemo/IRsendDemo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/IRsendDemo/IRsendDemo.ino -------------------------------------------------------------------------------- /examples/IRsendJVC/IRsendJVC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/IRsendJVC/IRsendJVC.ino -------------------------------------------------------------------------------- /examples/IRserial_remote/IRserial_remote.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/IRserial_remote/IRserial_remote.ino -------------------------------------------------------------------------------- /examples/IRserial_remote/IRserial_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/IRserial_remote/IRserial_remote.py -------------------------------------------------------------------------------- /examples/IRserial_remote/POV-Ray/remotebg.pov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/IRserial_remote/POV-Ray/remotebg.pov -------------------------------------------------------------------------------- /examples/IRserial_remote/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/IRserial_remote/click.wav -------------------------------------------------------------------------------- /examples/IRserial_remote/remotebg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/IRserial_remote/remotebg.png -------------------------------------------------------------------------------- /examples/IRservo/IRservo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/IRservo/IRservo.ino -------------------------------------------------------------------------------- /examples/Samsung36/Samsung36.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/Samsung36/Samsung36.ino -------------------------------------------------------------------------------- /examples/pinoccio/IRfreqScout/IRfreqScout.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/pinoccio/IRfreqScout/IRfreqScout.ino -------------------------------------------------------------------------------- /examples/pinoccio/IRfreqScout/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/pinoccio/IRfreqScout/version.h -------------------------------------------------------------------------------- /examples/pinoccio/IRrecvDumpFreqScout/IRrecvDumpFreqScout.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/pinoccio/IRrecvDumpFreqScout/IRrecvDumpFreqScout.ino -------------------------------------------------------------------------------- /examples/pinoccio/IRrecvDumpFreqScout/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/pinoccio/IRrecvDumpFreqScout/version.h -------------------------------------------------------------------------------- /examples/pinoccio/IRrecvDumpScout/IRrecvDumpScout.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/pinoccio/IRrecvDumpScout/IRrecvDumpScout.ino -------------------------------------------------------------------------------- /examples/pinoccio/IRrecvDumpScout/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/pinoccio/IRrecvDumpScout/version.h -------------------------------------------------------------------------------- /examples/pinoccio/IRsendScout/IRsendScout.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/pinoccio/IRsendScout/IRsendScout.ino -------------------------------------------------------------------------------- /examples/pinoccio/IRsendScout/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/pinoccio/IRsendScout/version.h -------------------------------------------------------------------------------- /examples/pinoccio/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/pinoccio/README.txt -------------------------------------------------------------------------------- /examples/pinoccio/html/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/pinoccio/html/button.png -------------------------------------------------------------------------------- /examples/pinoccio/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/pinoccio/html/index.html -------------------------------------------------------------------------------- /examples/pinoccio/html/iriopinoccio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/pinoccio/html/iriopinoccio.png -------------------------------------------------------------------------------- /examples/pinoccio/html/iriopinoccio1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/pinoccio/html/iriopinoccio1.png -------------------------------------------------------------------------------- /examples/pinoccio/html/remote.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/pinoccio/html/remote.css -------------------------------------------------------------------------------- /examples/pinoccio/html/remote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/pinoccio/html/remote.js -------------------------------------------------------------------------------- /examples/rcmm/rcmm.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/examples/rcmm/rcmm.ino -------------------------------------------------------------------------------- /manuals/IRLibReference.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/manuals/IRLibReference.docx -------------------------------------------------------------------------------- /manuals/IRLibReference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/manuals/IRLibReference.pdf -------------------------------------------------------------------------------- /manuals/Users Manual for IRLib - Chris Young.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyborg5/IRLib/HEAD/manuals/Users Manual for IRLib - Chris Young.epub --------------------------------------------------------------------------------