-
Notifications
You must be signed in to change notification settings - Fork 40
/
Main.ino
391 lines (370 loc) · 13.9 KB
/
Main.ino
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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
// --------------------- Загрузка переменных -------------------------------------------------------
void setupToInit() {
sendStatus(timeS, "00:00:00");
setupToOptions(langS);
setupToOptions(ssdpS);
setupToOptions(spaceS);
setupToOptions(timeZoneS);
setupToOptions(ddnsNameS);
setupToOptions(ddnsPortS);
setupToOptions(spiffsDataS);
setupToOptions(buildDataS);
setupToOptions(langS);
sendOptions("flashChip", String(ESP.getFlashChipId(), HEX));
sendOptions("ideFlashSize", ESP.getFlashChipSize());
sendOptions("realFlashSize", ESP.getFlashChipRealSize());
sendOptions("flashChipSpeed", ESP.getFlashChipSpeed() / 1000000);
sendOptions("cpuFreqMHz", ESP.getCpuFreqMHz());
FlashMode_t ideMode = ESP.getFlashChipMode();
sendOptions("FreeSketchSpace", ESP.getFreeSketchSpace());
sendOptions("flashChipMode", (ideMode == FM_QIO ? "QIO" : ideMode == FM_QOUT ? "QOUT" : ideMode == FM_DIO ? "DIO" : ideMode == FM_DOUT ? "DOUT" : "UNKNOWN"));
String configs = getSetup(configsS);
configs.toLowerCase();
String test = readFile("configs/" + configs + ".txt", 4096);
test.replace("\r\n", "\n");
test += "\n";
goCommands(test);
test = emptyS;
sendOptions(macS, WiFi.macAddress().c_str());
sendOptions(ipS, WiFi.localIP().toString());
sendOptions(macS, WiFi.macAddress().c_str());
sendOptions("voice", emptyS);
jsonWrite(modules, ipS, getOptions(ipS));
jsonWrite(modules, spaceS, getSetup(spaceS));
jsonWrite(modules, langS, getSetup(langS));
jsonWrite(modules, ssdpS, getSetup(ssdpS));
initPuls();
}
// --------------------Выделяем строку до маркера --------------------------------------------------
String selectToMarker (String str, String found) {
int p = str.indexOf(found);
return str.substring(0, p);
}
// -------------------Выделяем строку от конца строки до маркера ---------------------
String selectToMarkerLast (String str, String found) {
int p = str.lastIndexOf(found);
return str.substring(p + found.length());
}
//----------------------Удаляем все до символа разделителя -----------------
String deleteBeforeDelimiter(String str, String found) {
int p = str.indexOf(found) + found.length();
return str.substring(p);
}
//----------------------Удаляем все до символа разделителя -----------------
String deleteBeforeDelimiterTo(String str, String found) {
int p = str.indexOf(found);
return str.substring(p);
}
// -------------------Удаляем строку от конца строки до маркера ---------------------
String deleteToMarkerLast (String str, String found) {
int p = str.lastIndexOf(found);
return str.substring(0, p);
}
// ------------- Данные статистики -----------------------------------------------------------
void statistics() {
String urls = "http://backup.privet.lv/visitors/?";
urls += WiFi.macAddress().c_str();
urls += "&";
urls += getSetup(configsS);
urls += "&";
urls += ESP.getResetReason();
urls += "&";
urls += getSetup(spiffsDataS);
String stat = getURL(urls);
sendOptions(messageS, jsonRead(stat, messageS));
}
// ------------- Запрос на удаленный URL -----------------------------------------
String getURL(String urls) {
String answer;
HTTPClient http;
http.begin(urls); //HTTP
int httpCode = http.GET();
if (httpCode == HTTP_CODE_OK) {
answer = http.getString();
}
http.end();
return answer;
}
//------------------Выполнить все команды по порядку из строки разделитель \r\n \n
String goCommands(String inits) {
//Serial.println(inits);
String temp;
String rn = "\n";
inits += rn;
// Serial.println(writeFile("inits.txt", inits));
do {
temp = selectToMarker (inits, rn);
// Serial.println(temp);
sCmd.readStr(temp);
inits = deleteBeforeDelimiter(inits, rn);
} while (inits.indexOf(rn) != 0);
return "OK";
}
// ------------- Чтение файла в строку --------------------------------------
String readFile(String fileName, size_t len ) {
File configFile = SPIFFS.open("/" + fileName, "r");
if (!configFile) {
return "Failed";
}
size_t size = configFile.size();
if (size > len) {
configFile.close();
return "Large";
}
String temp = configFile.readString();
configFile.close();
return temp;
}
// ------------- Запись строки в файл --------------------------
String writeFile(String fileName, String strings ) {
File configFile = SPIFFS.open("/" + fileName, "w");
if (!configFile) {
return "Failed to open file";
}
configFile.print(strings);
configFile.close();
return "Write sucsses";
}
// ------------- Запись файла конфигурации ----------------------------------
void saveConfigSetup () {
writeFile(fileConfigS, configSetup );
}
// ------------- Проверка занятости пина --------------------------
/*
Алгоритм
Провнряем свободен ли пин если нет вернем 17
Если свободен то займем pins[pin] = true;
*/
uint8_t pinTest(uint8_t pin) {
//Serial.print("pin");
//Serial.print("=");
if (pin > 20) {
pin = 17;
} else {
if (pins[pin]) {
pin = 17 ;
}
else {
pins[pin] = true;
if (getOptions("flashChipMode") != "DOUT") {
if (pin > 5 && pin < 12) pin = 17 ;
if (pin == 1 || pin == 3) Serial.end();
} else {
if ( (pin > 5 && pin < 9) || pin == 11) pin = 17 ;
}
}
}
//Serial.println(pin);
return pin;
}
uint8_t pinTest(uint8_t pin, boolean multi) {
//Serial.print("multiPin");
//Serial.print("=");
if (pin > 20) {
pin = 17;
} else {
pins[pin] = !multi;
if (pins[pin]) {
pin = 17 ;
}
else {
pins[pin] = true;
if (getOptions("flashChipMode") != "DOUT") {
if (pin > 5 && pin < 12) pin = 17 ;
if (pin == 1 || pin == 3) Serial.end();
} else {
if ( (pin > 5 && pin < 9) || pin == 11) pin = 17 ;
}
}
}
//Serial.println(pin);
return pin;
}
// -------------- Регистрация модуля
void modulesReg(String modName) {
DynamicJsonBuffer jsonBuffer;
JsonObject& json = jsonBuffer.parseObject(modules);
json[ssdpS] = jsonRead(configJson, ssdpS);
json[spaceS] = jsonRead(configJson, spaceS);
JsonArray& data = json["module"].asArray();
data.add(modName);
modules = emptyS;
json.printTo(modules);
}
// -------------- Регистрация команд
void commandsReg(String comName) {
if (regCommands.indexOf(comName) == -1) {
DynamicJsonBuffer jsonBuffer;
JsonObject& json = jsonBuffer.parseObject(regCommands);
JsonArray& data = json["command"].asArray();
data.add(comName);
regCommands = emptyS;
json.printTo(regCommands);
}
}
// -------------- Регистрация actions
void actionsReg(String actionsName) {
jsonWrite(pulsList, actionsName, pulsNum);
pulsNum++;
}
// ------------------- Инициализация Импульс
void initPuls() {
sCmd.addCommand(pulseS.c_str(), startPuls);
commandsReg(pulseS);
modulesReg(pulseS);
}
void startPuls() {
String com = readArgsString(); // on off
if (com != "") { // если комманда есть
String pulseCom = readArgsString(); // Команда relay3 или rgb
String tacks = jsonRead(pulsList, pulseCom); //Получим номер задачи для устройства
sendOptions(pulseS + "State" + tacks, false);
pulseCom = topicToCom(pulseCom); // Пробел между командой и номером
pulseCom.replace(" ", " not "); // Модефицируем командув not
sendOptions(pulseComS + tacks, pulseCom); // Сохраним команду
if (com == onS || com == "1") { // Если комманда есть
int freq = stringToMilis (readArgsString(), 1); // Как долго включен
sendOptions(pulseS + tacks + "0", freq);
if (freq != 0) {
String temp = readArgsString(); // Как долго выключен
int freq1 = temp.toInt();
if (temp == "-")freq1 = freq;
if (temp == "")freq1 = 0;
sendOptions(pulseS + tacks + "1", freq1);
int period = freq + freq1;
String pulseTime = readArgsString(); // Время работы
int pulseTimeInt = stringToMilis(pulseTime, period);
int remainder = pulseTimeInt % (period);
if (remainder > period / 2) {
pulseTimeInt += period - remainder;
} else pulseTimeInt -= remainder;
if (getStatusInt(pulseCom)) {
pulseCom.replace(notS, offS); // Модефицируем командув off
sCmd.readStr(pulseCom);
}
sendOptions(pulseTimeS + tacks, pulseTimeInt);
imPuls(tacks.toInt());
}
}
if (com == "off" || com == "0") {
pulseCom.replace(notS, offS);
sCmd.readStr(pulseCom);
flipper[tacks.toInt()].detach();
}
}
}
int stringToMilis(String times, int period) {
int p = times.length();
String unit = times.substring(p - 1, p);
int timei = times.toInt();
if (unit == "s") timei *= 1000;
if (unit == "m") timei *= 60000;
if (unit == "h") timei *= 3600000;
if (unit == "i") timei *= period;
return timei;
}
void imPuls(int tacks) {
String pulseStateN = "pulseState" + (String)tacks;
boolean stopF = true;
String pulseCom = getOptions(pulseComS + tacks); // Получить каким устройством управляем
String pulseTime = getOptions(pulseTimeS + tacks); // Получим текстовое значние времени работы
int pulseTimeInt = pulseTime.toInt(); // Получим int значние времени работы
uint8_t low = getOptionsInt(pulseStateN);
int timeOn = getOptionsInt(pulseS + tacks + low); // Время включено
int timeOff = getOptionsInt(pulseS + tacks + !low); // Время выключено
if (timeOn > 0) { // Если время включено >0 сразу закончить
if (!low) {
pulseCom.replace(notS, onS);
//Serial.println(pulseCom);
}
else {
pulseCom.replace(notS, offS);
//Serial.println(pulseCom);
}
sCmd.readStr(pulseCom); // Выполнить команду
if (pulseTime != "null" && pulseTimeInt != 0 ) {
sendOptions(pulseTimeS + tacks, (String)(pulseTimeInt - timeOn));
if (getOptionsInt(pulseTimeS + tacks) <= 0) {
flipper[tacks].detach();
stopF = false;
}
}
low = !low;
sendOptions(pulseStateN, low);
if (stopF) {
flipper[tacks].attach_ms(timeOn, imPuls, tacks); // Задать время через которое процедура будет вывана повторно
}
} else {
sCmd.readStr(pulseCom); // Выключить
flipper[tacks].detach(); // Остановим таймер
//low = false; // Сбросить флаг ???
sendOptions(pulseStateN, false);
}
}
String topicToCom (String topicS) {
uint8_t p = 0;
boolean f = true;
uint8_t u = topicS.length();
while (p != u) {
if (isDigit(topicS.charAt(p))) {
String kay = topicS.substring(0, p);
//Serial.println(topicS.charAt(p));
//Serial.println(kay);
topicS.replace(kay, kay + " ");
yield();
f = false;
}
p++;
}
if (f) topicS += " ";
return topicS;
}
#ifdef safeData
// Запись данных в файл с частотой 1 секунда и более. Максимальное количество данных в суточном файле 1440 значений
void safeDataToFile(int inter, String par, uint16_t data) {
yield();
// Формируем зоголовок (префикс) Интервал, Параметр, размер_параметра
uint16_t dataSize = sizeof(data);
String prifexFile;
prifexFile += inter;
prifexFile += "," + par;
prifexFile += ",";
prifexFile += dataSize;
prifexFile += ":";
uint16_t prifexLen = prifexFile.length(); //Размер префикса
// Сделаем имя файла
String fileName = GetDate();
fileName = deleteBeforeDelimiter(fileName, " "); // удалим день недели
fileName.replace(" ", ".");
fileName.replace("..", "."); // Заменяем пробелы точками
fileName = par + "/" + fileName + ".txt"; // Имя файла параметр в виде директории и дата
fileName.toLowerCase(); //fileName = "san aug 31 2018"; Имя файла строчными буквами
File configFile = SPIFFS.open("/" + fileName, "a"); // Открываем файл на добавление
size_t size = configFile.size();
yield();
if (size == 0) {
configFile.print(prifexFile);
}
size = configFile.size();
// Получим время и определим позицию в файле
String time = GetTime();
//time = "00:15:00";
int timeM = timeToMin(time); // Здесь количество минут с начала суток
timeM = timeM / inter;
int poz = timeM * dataSize + prifexLen + 1; // позиция в которую нужно записать.
int endF = (size - prifexLen) * dataSize + prifexLen + 1; // позиция конца файла
if (poz >= endF) { // если файл имел пропуски в записи данных
int i = (poz - endF) / dataSize;
for (int j = 0; j < i; j++) { // Заполним недостающие данные
for (int d = 0; d < dataSize; d++) {
yield();
configFile.write(0); // нулями
}
}
}
yield();
configFile.write(data >> 8); // добавим текущие
configFile.write(data); // данные
configFile.close();
}
#endif