├── .gitattributes ├── .github └── workflows │ └── sync_issues.yml ├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── GPRS.cpp ├── GPRS.h ├── GPRSInterface.cpp ├── GPRSInterface.h ├── License.txt ├── README.md ├── Socket.cpp ├── Socket.h ├── TCPSocketConnection.cpp ├── TCPSocketConnection.h ├── TCPSocketServer.h ├── examples └── GPRSInterface_HelloWorld.ino ├── keywords.txt ├── library.properties ├── modem.cpp └── modem.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/GPRSInterface/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/sync_issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/GPRSInterface/HEAD/.github/workflows/sync_issues.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/GPRSInterface/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/GPRSInterface/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/GPRSInterface/HEAD/.travis.yml -------------------------------------------------------------------------------- /GPRS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/GPRSInterface/HEAD/GPRS.cpp -------------------------------------------------------------------------------- /GPRS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/GPRSInterface/HEAD/GPRS.h -------------------------------------------------------------------------------- /GPRSInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/GPRSInterface/HEAD/GPRSInterface.cpp -------------------------------------------------------------------------------- /GPRSInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/GPRSInterface/HEAD/GPRSInterface.h -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/GPRSInterface/HEAD/License.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/GPRSInterface/HEAD/README.md -------------------------------------------------------------------------------- /Socket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/GPRSInterface/HEAD/Socket.cpp -------------------------------------------------------------------------------- /Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/GPRSInterface/HEAD/Socket.h -------------------------------------------------------------------------------- /TCPSocketConnection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/GPRSInterface/HEAD/TCPSocketConnection.cpp -------------------------------------------------------------------------------- /TCPSocketConnection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/GPRSInterface/HEAD/TCPSocketConnection.h -------------------------------------------------------------------------------- /TCPSocketServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/GPRSInterface/HEAD/TCPSocketServer.h -------------------------------------------------------------------------------- /examples/GPRSInterface_HelloWorld.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/GPRSInterface/HEAD/examples/GPRSInterface_HelloWorld.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/GPRSInterface/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/GPRSInterface/HEAD/library.properties -------------------------------------------------------------------------------- /modem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/GPRSInterface/HEAD/modem.cpp -------------------------------------------------------------------------------- /modem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Seeed-Studio/GPRSInterface/HEAD/modem.h --------------------------------------------------------------------------------