├── .gitattributes ├── .gitignore ├── README.md ├── acrealio ├── CardDispenser.cpp ├── CardDispenser.h ├── Cipher.cpp ├── Cipher.h ├── Ddr.cpp ├── Ddr.h ├── IoBoard.cpp ├── IoBoard.h ├── LedBoard.cpp ├── LedBoard.h ├── Node.cpp ├── Node.h ├── PN5180Reader.cpp ├── PN5180Reader.h ├── RR10.cpp ├── RR10.h ├── Reader.cpp ├── Reader.h ├── RfidModule.h ├── SL015M.cpp ├── SL015M.h ├── SoftPWMRGB.cpp ├── SoftPWMRGB.h ├── acrealio.ino ├── pinoutconfig.h └── src │ └── PN5180 │ ├── Debug.cpp │ ├── Debug.h │ ├── PN5180.cpp │ ├── PN5180.h │ ├── PN5180FeliCa.cpp │ ├── PN5180FeliCa.h │ ├── PN5180ISO15693.cpp │ └── PN5180ISO15693.h └── license.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/README.md -------------------------------------------------------------------------------- /acrealio/CardDispenser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/CardDispenser.cpp -------------------------------------------------------------------------------- /acrealio/CardDispenser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/CardDispenser.h -------------------------------------------------------------------------------- /acrealio/Cipher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/Cipher.cpp -------------------------------------------------------------------------------- /acrealio/Cipher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/Cipher.h -------------------------------------------------------------------------------- /acrealio/Ddr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/Ddr.cpp -------------------------------------------------------------------------------- /acrealio/Ddr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/Ddr.h -------------------------------------------------------------------------------- /acrealio/IoBoard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/IoBoard.cpp -------------------------------------------------------------------------------- /acrealio/IoBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/IoBoard.h -------------------------------------------------------------------------------- /acrealio/LedBoard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/LedBoard.cpp -------------------------------------------------------------------------------- /acrealio/LedBoard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/LedBoard.h -------------------------------------------------------------------------------- /acrealio/Node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/Node.cpp -------------------------------------------------------------------------------- /acrealio/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/Node.h -------------------------------------------------------------------------------- /acrealio/PN5180Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/PN5180Reader.cpp -------------------------------------------------------------------------------- /acrealio/PN5180Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/PN5180Reader.h -------------------------------------------------------------------------------- /acrealio/RR10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/RR10.cpp -------------------------------------------------------------------------------- /acrealio/RR10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/RR10.h -------------------------------------------------------------------------------- /acrealio/Reader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/Reader.cpp -------------------------------------------------------------------------------- /acrealio/Reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/Reader.h -------------------------------------------------------------------------------- /acrealio/RfidModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/RfidModule.h -------------------------------------------------------------------------------- /acrealio/SL015M.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/SL015M.cpp -------------------------------------------------------------------------------- /acrealio/SL015M.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/SL015M.h -------------------------------------------------------------------------------- /acrealio/SoftPWMRGB.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/SoftPWMRGB.cpp -------------------------------------------------------------------------------- /acrealio/SoftPWMRGB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/SoftPWMRGB.h -------------------------------------------------------------------------------- /acrealio/acrealio.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/acrealio.ino -------------------------------------------------------------------------------- /acrealio/pinoutconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/pinoutconfig.h -------------------------------------------------------------------------------- /acrealio/src/PN5180/Debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/src/PN5180/Debug.cpp -------------------------------------------------------------------------------- /acrealio/src/PN5180/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/src/PN5180/Debug.h -------------------------------------------------------------------------------- /acrealio/src/PN5180/PN5180.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/src/PN5180/PN5180.cpp -------------------------------------------------------------------------------- /acrealio/src/PN5180/PN5180.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/src/PN5180/PN5180.h -------------------------------------------------------------------------------- /acrealio/src/PN5180/PN5180FeliCa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/src/PN5180/PN5180FeliCa.cpp -------------------------------------------------------------------------------- /acrealio/src/PN5180/PN5180FeliCa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/src/PN5180/PN5180FeliCa.h -------------------------------------------------------------------------------- /acrealio/src/PN5180/PN5180ISO15693.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/src/PN5180/PN5180ISO15693.cpp -------------------------------------------------------------------------------- /acrealio/src/PN5180/PN5180ISO15693.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/acrealio/src/PN5180/PN5180ISO15693.h -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nadeflore/ACreal_IO/HEAD/license.txt --------------------------------------------------------------------------------