forked from Seeed-Studio/Seeeduino_GPRS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sim800.h
141 lines (117 loc) · 4.25 KB
/
sim800.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/*
* sim800.h
* A library for SeeedStudio seeeduino GPRS shield
*
* Copyright (c) 2013 seeed technology inc.
* Author : lawliet zou
* Create Time : Dec 2013
* Change Log :
*
* The MIT License (MIT)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#ifndef __SIM800_H__
#define __SIM800_H__
#include "Arduino.h"
#include <SoftwareSerial.h>
#define TRUE 1
#define FALSE 0
#define SIM800_TX_PIN 8
#define SIM800_RX_PIN 7
#define SIM800_POWER_PIN 9
#define SIM800_POWER_STATUS 12
#define SIM800_BAUDRATE 9600
#define UART_DEBUG
#ifdef UART_DEBUG
#define ERROR(x) Serial.println(x)
#define DEBUG(x) Serial.println(x);
#else
#define ERROR(x)
#define DEBUG(x)
#endif
#define DEFAULT_TIMEOUT 5
/** SIM800 class.
* Used for SIM800 communication. attention that SIM800 module communicate with MCU in serial protocol
*/
class SIM800
{
public:
/** Create SIM800 Instance
* @param tx uart transmit pin to communicate with SIM800
* @param rx uart receive pin to communicate with SIM800
* @param baudRate baud rate of uart communication
*/
SIM800(int baudRate):serialSIM800(SIM800_TX_PIN,SIM800_RX_PIN){
powerPin = SIM800_POWER_PIN;
pinMode(powerPin,OUTPUT);
serialSIM800.begin(baudRate);
};
/** Power on SIM800
*/
void preInit(void);
/** read from SIM800 module and save to buffer array
* @param buffer buffer array to save what read from SIM800 module
* @param count the maximal bytes number read from SIM800 module
* @param timeOut time to wait for reading from SIM800 module
* @returns
* 0 on success
* -1 on error
*/
int readBuffer(char* buffer,int count, unsigned int timeOut);
/** clean Buffer
* @param buffer buffer to clean
* @param count number of bytes to clean
*/
void cleanBuffer(char* buffer, int count);
/** send AT command to SIM800 module
* @param cmd command array which will be send to GPRS module
*/
void sendCmd(const char* cmd);
/**send "AT" to SIM800 module
*/
void sendATTest(void);
/**send '0x1A' to SIM800 Module
*/
void sendEndMark(void);
/** check SIM800 module response before time out
* @param *resp correct response which SIM800 module will return
* @param *timeout waiting seconds till timeout
* @returns
* 0 on success
* -1 on error
*/
int waitForResp(const char* resp, unsigned timeout);
/** send AT command to GPRS module and wait for correct response
* @param *cmd AT command which will be send to GPRS module
* @param *resp correct response which GPRS module will return
* @param *timeout waiting seconds till timeout
* @returns
* 0 on success
* -1 on error
*/
int sendCmdAndWaitForResp(const char* cmd, const char *resp, unsigned timeout);
/** used for serial debug, you can specify tx and rx pin and then communicate with GPRS module with common AT commands
*/
void serialDebug(void);
int powerPin;
SoftwareSerial serialSIM800;
private:
};
#endif