Cellular library for MTS Socket Modem Arduino Shield devices from Multi-Tech Systems

Dependents:   mtsas mtsas mtsas mtsas

Revision:
81:2e12915f892e
Parent:
76:6eeffc10739d
Child:
82:5b33b670adb7
--- a/Cellular/CellularFactory.cpp	Wed Sep 09 18:12:52 2015 +0000
+++ b/Cellular/CellularFactory.cpp	Wed Nov 15 16:53:29 2017 -0600
@@ -81,6 +81,12 @@
             } else if (model.find("LE910-EUG") != string::npos) {
                 type = Cellular::MTSMC_LEU1;
                 mNumber = "LE910-EUG";
+            } else if (model.find("ME910C1-NA") != string::npos) {
+                type = Cellular::MTQ_MAT1;
+                mNumber = "ME910C1-NA";
+            } else if (model.find("ME910C1-NV") != string::npos) {
+                type = Cellular::MTQ_MVW1;
+                mNumber = "ME910C1-NV";
             }
             if (type != Cellular::NA) {
                 cell = new EasyIP(type);