-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrz_sim808.h
executable file
·214 lines (181 loc) · 5.95 KB
/
rz_sim808.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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
/*
TITLE:
rz_sim808.h
BRIEF:
header only library
DESC:
Arduino library for ESP32 send / receive SMS
* don't use, deprecated
SOURCE:
https://github.com/Zheng-Bote/esp32_libs
SYNTAX:
#include "rz_sim808.h"
RETURN:
void
HISTORY:
Version | Date | Developer | Comments
------- | ---------- | ---------------- | ---------------------------------------------------------------
0.0.1 | 2018-10-28 | RZheng | created
*/
#include "Arduino.h"
#ifndef rz_sim808
#define rz_sim808
// #####
static char callerID1[] = "+4916xxxxxxxx"; // Sony XZ2c
static char callerID2[] = "+4916xxxxxxxx"; // Samsung S10
static char callerID3[] = "+4915xxxxxxxx"; // Xiaomi Mi Max3
// #####
#include "Adafruit_FONA.h"
#define FONA_RX 2
#define FONA_TX 3
#define FONA_RST 4
char replybuffer[255];
HardwareSerial *fonaSerial = &Serial2;
Adafruit_FONA fona = Adafruit_FONA(FONA_RST);
uint8_t readline(char *buff, uint8_t maxbuff, uint16_t timeout = 0);
char fonaNotificationBuffer[64];
char smsBuffer[250];
int rz_sim808_start()
{
int counter = 0;
int cLimit = 5;
Serial.println(F("FONA SMS caller ID test"));
Serial.println(F("FONA initializing....(May take 3 seconds)"));
fonaSerial->begin(4800);
while (! fona.begin(*fonaSerial))
{
Serial.println(F("Couldn't find FONA"));
counter++;
delay(2000);
if(counter >= cLimit)
{
Serial.println("FAILED: FONA not found");
return -1;
}
}
Serial.println(F("FONA is OK"));
char imei[16] = {0}; // MUST use a 16 character buffer for IMEI!
uint8_t imeiLen = fona.getIMEI(imei);
if (imeiLen > 0) {
Serial.print("SIM card IMEI: "); Serial.println(imei);
}
//
// read the network/cellular status
uint8_t n = fona.getNetworkStatus();
Serial.print(F("Network status "));
Serial.print(n);
Serial.print(F(": "));
if (n == 0) Serial.println(F("Not registered"));
if (n == 1) Serial.println(F("Registered (home)"));
if (n == 2) Serial.println(F("Not registered (searching)"));
if (n == 3) Serial.println(F("Denied"));
if (n == 4) Serial.println(F("Unknown"));
if (n == 5) Serial.println(F("Registered roaming"));
//
fonaSerial->print("AT+CNMI=2,1\r\n");
Serial.println("FONA Ready");
return 0;
}
void rz_Fona_receive()
{
char* bufPtr = fonaNotificationBuffer; //handy buffer pointer
if (fona.available()) //any data available from the FONA?
{
int slot = 0; //this will be the slot number of the SMS
int charCount = 0;
//Read the notification into fonaInBuffer
do
{
*bufPtr = fona.read();
Serial.write(*bufPtr);
delay(1);
} while ((*bufPtr++ != '\n') && (fona.available()) && (++charCount < (sizeof(fonaNotificationBuffer)-1)));
//Add a terminal NULL to the notification string
*bufPtr = 0;
//Scan the notification string for an SMS received notification.
// If it's an SMS message, we'll get the slot number in 'slot'
if (1 == sscanf(fonaNotificationBuffer, "+CMTI: " FONA_PREF_SMS_STORAGE ",%d", &slot))
{
Serial.print("slot: "); Serial.println(slot);
char callerIDbuffer[32]; //we'll store the SMS sender number in here
// Retrieve SMS sender address/phone number.
if (! fona.getSMSSender(slot, callerIDbuffer, 31))
{
Serial.println("Didn't find SMS message in slot!");
}
Serial.print(F("FROM: ")); Serial.println(callerIDbuffer);
//char callerID1[] = "+491622663867";
//char callerID2[] = "+491622664071";
if(strcmp(callerID1, callerIDbuffer) == 0 || strcmp(callerID2, callerIDbuffer) == 0 || strcmp(callerID3, callerIDbuffer) == 0 )
{
Serial.println("callerID ist gleich callerIDbuffer!");
// Retrieve SMS value.
uint16_t smslen;
if (fona.readSMS(slot, smsBuffer, 250, &smslen))
{ // pass in buffer and max len!
Serial.println(smsBuffer);
}
//Send back an automatic response
Serial.println("Sending reponse...");
char msg[160] = {0};
if(strcmp(callerID1, callerIDbuffer) == 0)
{
strcpy(msg, "Hallo Sony");
}
else if(strcmp(callerID2, callerIDbuffer) == 0)
{
strcpy(msg, "Hallo Samsung");
}
else if(strcmp(callerID3, callerIDbuffer) == 0)
{
strcpy(msg, "Hallo Mi Max3");
}
if (!fona.sendSMS(callerIDbuffer, msg))
{
Serial.println(F("Failed"));
}
else
{
Serial.println(F("Sent!"));
}
if(strcmp(smsBuffer, "Hallo von Sony") == 0)
{
Serial.println("Msg : Hallo von Sony");
}
if(strcmp(smsBuffer, "HT open") == 0)
{
Serial.println("Msg : Haustuer open");
strcpy(msg, "Haustuer opne");
strcpy(payload.sender, sender);
strcpy(payload.receiver, "GW");
strcpy(payload.type, "actor");
strcpy(payload.phone, callerIDbuffer);
strcpy(payload.msg, smsBuffer);
rz_action_payload(&payload);
}
Serial.println(F("### TEST Lora & MQTT###"));
rz_sendLora("1CC0", "T4", "{\"n\":\"sms\",\"d\":\"rec\"}");
rz_mqtt_sendMsg("Test", "SMS received");
// rz_action_msg_rcv(String receiver, String command, String sendfrom, String datamsg)
rz_action_msg_rcv(rz_baseMac(), "T3", "SMS", smsBuffer);
}
else
{
Serial.println("callerID ist NICHT gleich callerIDbuffer!");
}
// delete the original msg after it is processed
// otherwise, we will fill up all the slots
// and then we won't be able to receive SMS anymore
if (fona.deleteSMS(slot))
{
Serial.print(F("deleted SMS in slot ")); Serial.println(slot);
}
else
{
Serial.print(F("Couldn't delete SMS in slot ")); Serial.println(slot);
fona.print(F("AT+CMGD=?\r\n"));
}
}
}
}
#endif