forked from letscontrolit/ESPEasy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Command.ino
369 lines (327 loc) · 9.18 KB
/
Command.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
#define INPUT_COMMAND_SIZE 80
void ExecuteCommand(byte source, const char *Line)
{
String status = "";
boolean success = false;
char TmpStr1[80];
TmpStr1[0] = 0;
char Command[80];
Command[0] = 0;
int Par1 = 0;
int Par2 = 0;
int Par3 = 0;
GetArgv(Line, Command, 1);
if (GetArgv(Line, TmpStr1, 2)) Par1 = str2int(TmpStr1);
if (GetArgv(Line, TmpStr1, 3)) Par2 = str2int(TmpStr1);
if (GetArgv(Line, TmpStr1, 4)) Par3 = str2int(TmpStr1);
// ****************************************
// commands for debugging
// ****************************************
if (strcasecmp_P(Command, PSTR("TaskClear")) == 0)
{
success = true;
taskClear(Par1 - 1, true);
}
if (strcasecmp_P(Command, PSTR("wdconfig")) == 0)
{
success = true;
Wire.beginTransmission(Par1); // address
Wire.write(Par2); // command
Wire.write(Par3); // data
Wire.endTransmission();
}
if (strcasecmp_P(Command, PSTR("wdread")) == 0)
{
success = true;
Wire.beginTransmission(Par1); // address
Wire.write(0x83); // command to set pointer
Wire.write(Par2); // pointer value
Wire.endTransmission();
Wire.requestFrom((uint8_t)Par1, (uint8_t)1);
if (Wire.available())
{
byte value = Wire.read();
status = F("Reg value: ");
status += value;
}
}
if (strcasecmp_P(Command, PSTR("VariableSet")) == 0)
{
success = true;
if (GetArgv(Line, TmpStr1, 3))
UserVar[Par1 - 1] = atof(TmpStr1);
}
if (strcasecmp_P(Command, PSTR("build")) == 0)
{
success = true;
Settings.Build = Par1;
SaveSettings();
}
if (strcasecmp_P(Command, PSTR("NoSleep")) == 0)
{
success = true;
Settings.deepSleep = 0;
}
// ****************************************
// commands for rules
// ****************************************
if (strcasecmp_P(Command, PSTR("TimerSet")) == 0)
{
success = true;
RulesTimer[Par1 - 1] = millis() + (1000 * Par2);
}
if (strcasecmp_P(Command, PSTR("Delay")) == 0)
{
success = true;
delayMillis(Par1);
}
if (strcasecmp_P(Command, PSTR("Rules")) == 0)
{
success = true;
if (Par1 == 1)
Settings.UseRules = true;
else
Settings.UseRules = false;
}
if (strcasecmp_P(Command, PSTR("Event")) == 0)
{
success = true;
String event = Line;
event = event.substring(6);
event.replace("$", "#");
if (Settings.UseRules)
rulesProcessing(event);
}
if (strcasecmp_P(Command, PSTR("SendTo")) == 0)
{
success = true;
String event = Line;
event.replace(" ", ",");
int index = event.indexOf(',');
if (index > 0)
{
event = event.substring(index+1);
index = event.indexOf(',');
if (index > 0)
{
event = event.substring(index+1);
SendUDPCommand(Par1, (char*)event.c_str(), event.length());
}
}
}
if (strcasecmp_P(Command, PSTR("Publish")) == 0)
{
success = true;
String event = Line;
event.replace(" ", ",");
int index = event.indexOf(',');
if (index > 0)
{
event = event.substring(index+1);
index = event.indexOf(',');
if (index > 0)
{
String topic = event.substring(0,index);
String value = event.substring(index+1);
MQTTclient.publish(topic, value);
}
}
}
if (strcasecmp_P(Command, PSTR("SendToUDP")) == 0)
{
success = true;
String strLine = Line;
String ip = parseString(strLine,2);
String port = parseString(strLine,3);
int msgpos = getParamStartPos(strLine,4);
String message = strLine.substring(msgpos);
byte ipaddress[4];
str2ip((char*)ip.c_str(), ipaddress);
IPAddress UDP_IP(ipaddress[0], ipaddress[1], ipaddress[2], ipaddress[3]);
portUDP.beginPacket(UDP_IP, port.toInt());
portUDP.write(message.c_str(), message.length());
portUDP.endPacket();
}
if (strcasecmp_P(Command, PSTR("SendToHTTP")) == 0)
{
success = true;
String strLine = Line;
String host = parseString(strLine,2);
String port = parseString(strLine,3);
int pathpos = getParamStartPos(strLine,4);
String path = strLine.substring(pathpos);
WiFiClient client;
if (client.connect(host.c_str(), port.toInt()))
{
client.print(String("GET ") + path + " HTTP/1.1\r\n" +
"Host: " + host + "\r\n" +
"Connection: close\r\n\r\n");
unsigned long timer = millis() + 200;
while (!client.available() && millis() < timer)
delay(1);
while (client.available()) {
String line = client.readStringUntil('\n');
if (line.substring(0, 15) == "HTTP/1.1 200 OK")
addLog(LOG_LEVEL_DEBUG, line);
delay(1);
}
client.flush();
client.stop();
}
}
// ****************************************
// special commands for old nodo plugin
// ****************************************
if (strcasecmp_P(Command, PSTR("DomoticzSend")) == 0)
{
success = true;
if (GetArgv(Line, TmpStr1, 4))
{
struct EventStruct TempEvent;
TempEvent.TaskIndex = 0;
TempEvent.BaseVarIndex = (VARS_PER_TASK * TASKS_MAX) - 1;
TempEvent.idx = Par2;
TempEvent.sensorType = Par1;
UserVar[(VARS_PER_TASK * TASKS_MAX) - 1] = atof(TmpStr1);
sendData(&TempEvent);
}
}
if (strcasecmp(Command, "DomoticzGet") == 0)
{
success = true;
float value = 0;
if (Domoticz_getData(Par2, &value))
{
status = F("DomoticzGet ");
status += value;
}
else
status = F("Error getting data");
}
// ****************************************
// configure settings commands
// ****************************************
if (strcasecmp_P(Command, PSTR("WifiSSID")) == 0)
{
success = true;
strcpy(SecuritySettings.WifiSSID, Line + 9);
}
if (strcasecmp_P(Command, PSTR("WifiKey")) == 0)
{
success = true;
strcpy(SecuritySettings.WifiKey, Line + 8);
}
if (strcasecmp_P(Command, PSTR("WifiScan")) == 0)
{
success = true;
WifiScan();
}
if (strcasecmp_P(Command, PSTR("WifiConnect")) == 0)
{
success = true;
WifiConnect(1);
}
if (strcasecmp_P(Command, PSTR("WifiDisconnect")) == 0)
{
success = true;
WifiDisconnect();
}
if (strcasecmp_P(Command, PSTR("Reboot")) == 0)
{
success = true;
pinMode(0, INPUT);
pinMode(2, INPUT);
pinMode(15, INPUT);
ESP.reset();
}
if (strcasecmp_P(Command, PSTR("Restart")) == 0)
{
success = true;
ESP.restart();
}
if (strcasecmp_P(Command, PSTR("Erase")) == 0)
{
success = true;
EraseFlash();
ZeroFillFlash();
saveToRTC(0);
WiFi.persistent(true); // use SDK storage of SSID/WPA parameters
WiFi.disconnect(); // this will store empty ssid/wpa into sdk storage
WiFi.persistent(false); // Do not use SDK storage of SSID/WPA parameters
}
if (strcasecmp_P(Command, PSTR("Reset")) == 0)
{
success = true;
ResetFactory();
}
if (strcasecmp_P(Command, PSTR("Save")) == 0)
{
success = true;
SaveSettings();
}
if (strcasecmp_P(Command, PSTR("Load")) == 0)
{
success = true;
LoadSettings();
}
if (strcasecmp_P(Command, PSTR("FlashDump")) == 0)
{
success = true;
uint32_t _sectorStart = ((uint32_t)&_SPIFFS_start - 0x40200000) / SPI_FLASH_SEC_SIZE;
uint32_t _sectorEnd = ((uint32_t)&_SPIFFS_end - 0x40200000) / SPI_FLASH_SEC_SIZE;
Serial.print(F("Sketch size : "));
Serial.println(ESP.getSketchSize());
Serial.print(F("Sketch free space : "));
Serial.println(ESP.getFreeSketchSpace());
Serial.print(F("Flash size : "));
Serial.println(ESP.getFlashChipRealSize());
Serial.print(F("SPIFFS start sector: "));
Serial.println(_sectorStart);
Serial.print(F("SPIFFS end sector : "));
Serial.println(_sectorEnd);
char data[80];
if (Par2 == 0) Par2 = Par1;
for (int x = Par1; x <= Par2; x++)
{
LoadFromFlash(x * 1024, (byte*)&data, sizeof(data));
Serial.print(F("Offset: "));
Serial.print(x);
Serial.print(" : ");
Serial.println(data);
}
}
if (strcasecmp_P(Command, PSTR("Debug")) == 0)
{
success = true;
Settings.SerialLogLevel = Par1;
}
if (strcasecmp_P(Command, PSTR("IP")) == 0)
{
success = true;
if (GetArgv(Line, TmpStr1, 2))
if (!str2ip(TmpStr1, Settings.IP))
Serial.println("?");
}
if (strcasecmp_P(Command, PSTR("Settings")) == 0)
{
success = true;
char str[20];
Serial.println();
Serial.println(F("System Info"));
IPAddress ip = WiFi.localIP();
sprintf_P(str, PSTR("%u.%u.%u.%u"), ip[0], ip[1], ip[2], ip[3]);
Serial.print(F(" IP Address : ")); Serial.println(str);
Serial.print(F(" Build : ")); Serial.println((int)BUILD);
Serial.print(F(" Unit : ")); Serial.println((int)Settings.Unit);
Serial.print(F(" WifiSSID : ")); Serial.println(SecuritySettings.WifiSSID);
Serial.print(F(" WifiKey : ")); Serial.println(SecuritySettings.WifiKey);
Serial.print(F(" Free mem : ")); Serial.println(FreeMem());
}
yield();
if (success)
status += F("\nOk");
else
status += F("\nUnknown command!");
SendStatus(source,status);
yield();
}