Adeon
|
Public Member Functions | |
GSM (uint8_t rx, uint8_t tx, long baud=DEFAULT_BAUD_RATE) | |
Constructor for the class GSM. More... | |
GSM (Stream *pGsmSerial) | |
Constructor for the class GSM. More... | |
void | begin () |
Sets GSM module. Performs standard AT test, sets GSM mode and message in plain text. More... | |
void | checkGsmOutput () |
Checks for incoming SMS. Checks serial for new incoming message. If message is detected, it starts to checks its validity. If message is valid phone number and message text are parsed. When the message is processed, SMS is deleted from GSM buffer. If GSM buffer keeps more than 10 SMS, whole buffer will be deleted. More... | |
bool | isNewMsgAvailable () |
Returns new message availability. More... | |
char * | getMsg () |
Returns pointer to message buffer array. More... | |
char * | getPhoneNum () |
Returns pointer to phone number buffer array. More... | |
GSM::GSM | ( | uint8_t | rx, |
uint8_t | tx, | ||
long | baud = DEFAULT_BAUD_RATE |
||
) |
Constructor for the class GSM.
RX | and TX pins, baudrate (default 9600) Create instances of parser and serial handler. |
Definition at line 49 of file SIMlib.cpp.
GSM::GSM | ( | Stream * | pGsmSerial | ) |
Constructor for the class GSM.
pGsmSerial | is a pointer to Serial object Creat instances of parser and serial hanfler. |
Definition at line 78 of file SIMlib.cpp.
void GSM::begin | ( | ) |
Sets GSM module. Performs standard AT test, sets GSM mode and message in plain text.
Definition at line 145 of file SIMlib.cpp.
void GSM::checkGsmOutput | ( | ) |
Checks for incoming SMS. Checks serial for new incoming message. If message is detected, it starts to checks its validity. If message is valid phone number and message text are parsed. When the message is processed, SMS is deleted from GSM buffer. If GSM buffer keeps more than 10 SMS, whole buffer will be deleted.
Definition at line 91 of file SIMlib.cpp.
char * GSM::getMsg | ( | ) |
Returns pointer to message buffer array.
Definition at line 128 of file SIMlib.cpp.
char * GSM::getPhoneNum | ( | ) |
Returns pointer to phone number buffer array.
Definition at line 137 of file SIMlib.cpp.
bool GSM::isNewMsgAvailable | ( | ) |
Returns new message availability.
true
if new message is available, false
otherwise. Definition at line 120 of file SIMlib.cpp.