View gist:583b919c7374d5cc0f5402d70ecec082
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; | |
} |
View gist:6741eb10763b5b8eb3e53167c7df6563
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 |