This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-webkit-keyframes popperIn { | |
0% { | |
opacity: 0; | |
-webkit-transform: scale(1.06); | |
} | |
40% { | |
opacity: 1; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bool modem_command(String command, String expected_result_excerpt , unsigned int timeout){ | |
String response; | |
if (DEBUG) Serial.print("[MODEM] " + command); | |
//Send the AT command | |
mySerial.println(command); | |
while (mySerial.available() == 0); // wait for first char | |
//Wait and process repsonse | |
unsigned long lastRead = millis(); // last time a char was available |