23#ifndef ADEON_SIM_LIB_H
24#define ADEON_SIM_LIB_H
28#define DEFAULT_BAUD_RATE 9600
30#if defined(__AVR_ATmega2560__)
32#elif defined(__AVR_ATmega328P__)
40 #define RX_BUF_SIZE 256
46 #error "Unsupported board"
50 #include <SoftwareSerial.h>
53constexpr static auto RX_BUFFER = 255;
54constexpr static auto MSG_LENGTH = 147;
55constexpr static auto MAX_CMD_LENGTH = 20;
56constexpr static auto PHONE_NUMBER_LENGTH = 16;
57constexpr static auto PERIODIC_READ_TIME = 150;
63 GSM(
long baud = DEFAULT_BAUD_RATE);
66 #if defined(RX) && defined(TX)
67 GSM(uint8_t rx = RX, uint8_t tx = TX,
long baud = DEFAULT_BAUD_RATE);
69 GSM(uint8_t rx, uint8_t tx,
long baud = DEFAULT_BAUD_RATE);
71 GSM(Stream* pGsmSerial);
82 SerialHandler(Stream* pGsmSerial);
84 void serialWrite(
const char* command);
85 void periodicSerialCheck();
86 void feedbackSerialCheck();
88 bool isRxBufferAvailable();
89 void setRxBufferAvailability(
bool var);
90 void serialRead(uint8_t incomingBytes);
94 bool _periodicReading =
true;
95 bool _rxBufferAvailable =
false;
96 unsigned long _lastReadTime = 0;
97 bool _periodicReadingFlag =
true;
99 char* _rxBuffer =
nullptr;
104 ParserGSM(SerialHandler* pSerialHandler,
bool* newMsg, uint8_t* lastMsgIndex);
105 bool getResponse(
const char* searchedChar);
106 bool identifyIncomingMsg(
const char* command);
107 char* makeDynamicCmd(
const char* command, uint8_t
id);
109 void getPhoneNumber();
110 char* getPointMsgBuf();
111 char* getPointPhoneBuf();
114 uint8_t GetIndex(
char* buffer,
char startSym);
116 SerialHandler* _pSerialHandler;
119 char* _pRxBuffer =
nullptr;
120 char* _msgBuffer =
nullptr;
121 char* _cmdBuffer =
nullptr;
122 char _phoneBuffer[PHONE_NUMBER_LENGTH];
123 uint8_t* _pLastMsgIndex;
126 bool sendCommand(
const char* cmd);
128 void deleteMsgGsmStack();
130 static constexpr const char* confirmFeedback =
"OK";
131 static constexpr const char* basicCommand =
"AT";
132 static constexpr const char* pinCheck =
"AT+CPIN?";
133 static constexpr const char* checkSimCard =
"AT+CPIN?";
134 static constexpr const char* plainTextMode =
"AT+CMGF=1";
135 static constexpr const char* gsmMode =
"AT+CFUN=1";
136 static constexpr const char* smsReading =
"AT+CMGR=";
137 static constexpr const char* deleteSms =
"AT+CMGD=";
138 static constexpr const char* incomingSms =
"CMTI";
141 SerialHandler* _pSerialHandler;
145 uint8_t _lastMsgIndex = 0;
148 bool _newMsg =
false;
void checkGsmOutput()
Checks for incoming SMS. Checks serial for new incoming message. If message is detected,...
bool isNewMsgAvailable()
Returns new message availability.
char * getPhoneNum()
Returns pointer to phone number buffer array.
void begin()
Sets GSM module. Performs standard AT test, sets GSM mode and message in plain text.
char * getMsg()
Returns pointer to message buffer array.