Adeon
Loading...
Searching...
No Matches
GSM Class Reference

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...
 

Detailed Description

Definition at line 59 of file SIMlib.h.

Constructor & Destructor Documentation

◆ GSM() [1/2]

GSM::GSM ( uint8_t  rx,
uint8_t  tx,
long  baud = DEFAULT_BAUD_RATE 
)

Constructor for the class GSM.

Parameters
RXand TX pins, baudrate (default 9600) Create instances of parser and serial handler.

Definition at line 49 of file SIMlib.cpp.

◆ GSM() [2/2]

GSM::GSM ( Stream *  pGsmSerial)

Constructor for the class GSM.

Parameters
pGsmSerialis a pointer to Serial object Creat instances of parser and serial hanfler.

Definition at line 78 of file SIMlib.cpp.

Member Function Documentation

◆ begin()

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.

◆ checkGsmOutput()

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.

◆ getMsg()

char * GSM::getMsg ( )

Returns pointer to message buffer array.

Returns
_pMsgBuffer is a pointer to an array.

Definition at line 128 of file SIMlib.cpp.

◆ getPhoneNum()

char * GSM::getPhoneNum ( )

Returns pointer to phone number buffer array.

Returns
_phoneBuffer is a pointer to an array.

Definition at line 137 of file SIMlib.cpp.

◆ isNewMsgAvailable()

bool GSM::isNewMsgAvailable ( )

Returns new message availability.

Returns
_newMsg true if new message is available, false otherwise.

Definition at line 120 of file SIMlib.cpp.


The documentation for this class was generated from the following files: