├── .github └── workflows │ └── arduino-checks.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── docs ├── RF433.md ├── SC5272_protocol.md ├── cresta_protocol.md ├── ev1527_protocol.md └── scanner.md ├── examples ├── README.md ├── TempSensor │ └── TempSensor.ino ├── intertechno │ ├── README.md │ └── intertechno.ino ├── necIR │ └── necIR.ino ├── scanner │ ├── README.md │ └── scanner.ino └── testcodes │ └── testcodes.ino ├── library.properties └── src ├── RFCodes.h ├── SignalCollector.cpp ├── SignalCollector.h ├── SignalParser.cpp ├── SignalParser.h ├── debugout.h ├── ircodes.h └── protocols.h /.github/workflows/arduino-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/.github/workflows/arduino-checks.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _* 2 | .vscode -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/README.md -------------------------------------------------------------------------------- /docs/RF433.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/docs/RF433.md -------------------------------------------------------------------------------- /docs/SC5272_protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/docs/SC5272_protocol.md -------------------------------------------------------------------------------- /docs/cresta_protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/docs/cresta_protocol.md -------------------------------------------------------------------------------- /docs/ev1527_protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/docs/ev1527_protocol.md -------------------------------------------------------------------------------- /docs/scanner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/docs/scanner.md -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/TempSensor/TempSensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/examples/TempSensor/TempSensor.ino -------------------------------------------------------------------------------- /examples/intertechno/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/examples/intertechno/README.md -------------------------------------------------------------------------------- /examples/intertechno/intertechno.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/examples/intertechno/intertechno.ino -------------------------------------------------------------------------------- /examples/necIR/necIR.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/examples/necIR/necIR.ino -------------------------------------------------------------------------------- /examples/scanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/examples/scanner/README.md -------------------------------------------------------------------------------- /examples/scanner/scanner.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/examples/scanner/scanner.ino -------------------------------------------------------------------------------- /examples/testcodes/testcodes.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/examples/testcodes/testcodes.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/library.properties -------------------------------------------------------------------------------- /src/RFCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/src/RFCodes.h -------------------------------------------------------------------------------- /src/SignalCollector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/src/SignalCollector.cpp -------------------------------------------------------------------------------- /src/SignalCollector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/src/SignalCollector.h -------------------------------------------------------------------------------- /src/SignalParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/src/SignalParser.cpp -------------------------------------------------------------------------------- /src/SignalParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/src/SignalParser.h -------------------------------------------------------------------------------- /src/debugout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/src/debugout.h -------------------------------------------------------------------------------- /src/ircodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/src/ircodes.h -------------------------------------------------------------------------------- /src/protocols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathertel/rfcodes/HEAD/src/protocols.h --------------------------------------------------------------------------------