Added Quectel M95 support

This commit is contained in:
Alligator Descartes
2018-04-17 17:20:19 +01:00
parent cc80035e69
commit 7f268bfb00
5 changed files with 787 additions and 24 deletions

View File

@@ -60,6 +60,11 @@
#include <TinyGsmClientXBee.h>
typedef TinyGsm::GsmClient TinyGsmClient;
#elif defined(TINY_GSM_MODEM_M95)
#define TINY_GSM_MODEM_HAS_GPRS
#include <TinyGsmClientM95.h>
typedef TinyGsm::GsmClient TinyGsmClient;
#else
#error "Please define GSM modem model"
#endif