Removed some non-ascii characters

Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
This commit is contained in:
Sara Damiano
2020-02-13 17:34:46 -05:00
parent 43391944df
commit cbcf7734bb
8 changed files with 15 additions and 12 deletions

View File

@@ -103,6 +103,7 @@ class TinyGsmGPRS {
// AT+GSN command
String getIMEIImpl() {
thisModem().sendAT(GF("+GSN"));
thisModem().streamSkipUntil('\n'); // skip first newline
String res = thisModem().stream.readStringUntil('\n');
thisModem().waitResponse();
res.trim();
@@ -113,6 +114,7 @@ class TinyGsmGPRS {
// command
String getIMSIImpl() {
thisModem().sendAT(GF("+CIMI"));
thisModem().streamSkipUntil('\n'); // skip first newline
String res = thisModem().stream.readStringUntil('\n');
thisModem().waitResponse();
res.trim();