Created
June 14, 2015 21:56
-
-
Save jenschr/bfdf154fd6c09b59fcec to your computer and use it in GitHub Desktop.
New method to let Adafruit Fona check the status of a call
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
int8_t Adafruit_FONA::checkCallStatus(void) { | |
uint16_t level; | |
if (! sendParseReply(F("AT+CPAS"), F("+CPAS: "), &level) ) return 0; | |
return level; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment