Adeon
Loading...
Searching...
No Matches
SIMlib.h
Go to the documentation of this file.
1
23#ifndef ADEON_SIM_LIB_H
24#define ADEON_SIM_LIB_H
25
26#include <Arduino.h>
27
28#define DEFAULT_BAUD_RATE 9600
29
30#if defined(__AVR_ATmega2560__)
31 #define HW_SERIAL
32#elif defined(__AVR_ATmega328P__)
33 #define SW_SERIAL
34 #define RX 10
35 #define TX 11
36#elif defined(ESP8266)
37 #define SW_SERIAL
38 #define RX 14 //D5
39 #define TX 12 //D6
40 #define RX_BUF_SIZE 256
41#elif defined(ESP32)
42 #define HW_SERIAL
43 #define RX 16
44 #define TX 17
45#else
46 #error "Unsupported board"
47#endif
48
49#ifdef SW_SERIAL
50 #include <SoftwareSerial.h>
51#endif
52
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; //ms
58
59class GSM {
60 public:
61
62 #ifdef HW_SERIAL
63 GSM(long baud = DEFAULT_BAUD_RATE);
64 #endif
65
66 #if defined(RX) && defined(TX)
67 GSM(uint8_t rx = RX, uint8_t tx = TX, long baud = DEFAULT_BAUD_RATE);
68 #else
69 GSM(uint8_t rx, uint8_t tx, long baud = DEFAULT_BAUD_RATE);
70 #endif
71 GSM(Stream* pGsmSerial);
72
73 void begin();
74 void checkGsmOutput();
75 bool isNewMsgAvailable();
76 char* getMsg();
77 char* getPhoneNum();
78
79 private:
80 class SerialHandler{
81 public:
82 SerialHandler(Stream* pGsmSerial);
83
84 void serialWrite(const char* command);
85 void periodicSerialCheck(); //get num of received bytes
86 void feedbackSerialCheck();
87 char* getRxBufferP();
88 bool isRxBufferAvailable();
89 void setRxBufferAvailability(bool var);
90 void serialRead(uint8_t incomingBytes);
91
92 Stream* _pGsmSerial;
93
94 bool _periodicReading = true; //peridical serial monitor reading, can be used in timer or loop as well
95 bool _rxBufferAvailable = false;
96 unsigned long _lastReadTime = 0;
97 bool _periodicReadingFlag = true;
98
99 char* _rxBuffer = nullptr;
100 };
101
102 class ParserGSM{
103 public:
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);
108 void getMsg();
109 void getPhoneNumber();
110 char* getPointMsgBuf();
111 char* getPointPhoneBuf();
112
113 private:
114 uint8_t GetIndex(char* buffer, char startSym);
115
116 SerialHandler* _pSerialHandler;
117
118 bool* _pNewMsg;
119 char* _pRxBuffer = nullptr;
120 char* _msgBuffer = nullptr;
121 char* _cmdBuffer = nullptr;
122 char _phoneBuffer[PHONE_NUMBER_LENGTH];
123 uint8_t* _pLastMsgIndex;
124 };
125
126 bool sendCommand(const char* cmd);
127 void deleteMsg();
128 void deleteMsgGsmStack();
129
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";
139
140 ParserGSM* _pParser;
141 SerialHandler* _pSerialHandler;
142
143 char* _pMsgBuffer;
144 char* _pPhoneBuffer;
145 uint8_t _lastMsgIndex = 0;
146 uint8_t _pwrPin = 0;
147
148 bool _newMsg = false; //if GSM recieve new message, it will be checked by timer
149};
150
151#endif // ADEON_SIM_LIB_H
Definition: SIMlib.h:59
void checkGsmOutput()
Checks for incoming SMS. Checks serial for new incoming message. If message is detected,...
Definition: SIMlib.cpp:91
bool isNewMsgAvailable()
Returns new message availability.
Definition: SIMlib.cpp:120
char * getPhoneNum()
Returns pointer to phone number buffer array.
Definition: SIMlib.cpp:137
void begin()
Sets GSM module. Performs standard AT test, sets GSM mode and message in plain text.
Definition: SIMlib.cpp:145
char * getMsg()
Returns pointer to message buffer array.
Definition: SIMlib.cpp:128