├── .gitignore ├── LICENSE ├── README.md ├── RFControl.cpp ├── RFControl.h ├── arduino_functions.h ├── examples ├── compressed │ └── compressed.ino └── simple │ └── simple.ino ├── library.json └── simulate ├── build.sh ├── simulate └── simulate.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoksta944/rfcat-rolljam/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoksta944/rfcat-rolljam/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoksta944/rfcat-rolljam/HEAD/README.md -------------------------------------------------------------------------------- /RFControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoksta944/rfcat-rolljam/HEAD/RFControl.cpp -------------------------------------------------------------------------------- /RFControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoksta944/rfcat-rolljam/HEAD/RFControl.h -------------------------------------------------------------------------------- /arduino_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoksta944/rfcat-rolljam/HEAD/arduino_functions.h -------------------------------------------------------------------------------- /examples/compressed/compressed.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoksta944/rfcat-rolljam/HEAD/examples/compressed/compressed.ino -------------------------------------------------------------------------------- /examples/simple/simple.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoksta944/rfcat-rolljam/HEAD/examples/simple/simple.ino -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoksta944/rfcat-rolljam/HEAD/library.json -------------------------------------------------------------------------------- /simulate/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoksta944/rfcat-rolljam/HEAD/simulate/build.sh -------------------------------------------------------------------------------- /simulate/simulate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoksta944/rfcat-rolljam/HEAD/simulate/simulate -------------------------------------------------------------------------------- /simulate/simulate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zoksta944/rfcat-rolljam/HEAD/simulate/simulate.cpp --------------------------------------------------------------------------------