├── .gitignore ├── README.md ├── examples ├── CommandResponse │ └── CommandResponse.ino ├── GetPacketInfo │ └── GetPacketInfo.ino ├── GetSystemInfo │ └── GetSystemInfo.ino ├── PingPong │ └── PingPong.ino ├── RepeatMessage │ └── RepeatMessage.ino └── RepeatMessageCustom │ └── RepeatMessageCustom.ino ├── keywords.txt ├── library.properties └── src ├── FOSSA-Comms.cpp └── FOSSA-Comms.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSASystems/FOSSA-Comms/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSASystems/FOSSA-Comms/HEAD/README.md -------------------------------------------------------------------------------- /examples/CommandResponse/CommandResponse.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSASystems/FOSSA-Comms/HEAD/examples/CommandResponse/CommandResponse.ino -------------------------------------------------------------------------------- /examples/GetPacketInfo/GetPacketInfo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSASystems/FOSSA-Comms/HEAD/examples/GetPacketInfo/GetPacketInfo.ino -------------------------------------------------------------------------------- /examples/GetSystemInfo/GetSystemInfo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSASystems/FOSSA-Comms/HEAD/examples/GetSystemInfo/GetSystemInfo.ino -------------------------------------------------------------------------------- /examples/PingPong/PingPong.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSASystems/FOSSA-Comms/HEAD/examples/PingPong/PingPong.ino -------------------------------------------------------------------------------- /examples/RepeatMessage/RepeatMessage.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSASystems/FOSSA-Comms/HEAD/examples/RepeatMessage/RepeatMessage.ino -------------------------------------------------------------------------------- /examples/RepeatMessageCustom/RepeatMessageCustom.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSASystems/FOSSA-Comms/HEAD/examples/RepeatMessageCustom/RepeatMessageCustom.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSASystems/FOSSA-Comms/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSASystems/FOSSA-Comms/HEAD/library.properties -------------------------------------------------------------------------------- /src/FOSSA-Comms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSASystems/FOSSA-Comms/HEAD/src/FOSSA-Comms.cpp -------------------------------------------------------------------------------- /src/FOSSA-Comms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOSSASystems/FOSSA-Comms/HEAD/src/FOSSA-Comms.h --------------------------------------------------------------------------------