-
Notifications
You must be signed in to change notification settings - Fork 12
/
Serial.ino
139 lines (114 loc) · 3.89 KB
/
Serial.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
/********************************************************************************************\
* Process data from Serial Interface
\*********************************************************************************************/
#define INPUT_COMMAND_SIZE 80
void ExecuteCommand(const char *Line)
{
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("NoSleep")) == 0)
{
Settings.deepSleep = 0;
}
// ****************************************
// configure settings commands
// ****************************************
if (strcasecmp_P(Command, PSTR("WifiSSID")) == 0)
strcpy(SecuritySettings.WifiSSID, Line + 9);
if (strcasecmp_P(Command, PSTR("WifiKey")) == 0)
strcpy(SecuritySettings.WifiKey, Line + 8);
if (strcasecmp_P(Command, PSTR("WifiScan")) == 0)
WifiScan();
if (strcasecmp_P(Command, PSTR("WifiConnect")) == 0)
WifiConnect();
if (strcasecmp_P(Command, PSTR("WifiDisconnect")) == 0)
WifiDisconnect();
if (strcasecmp_P(Command, PSTR("Reboot")) == 0)
{
pinMode(0,INPUT);
pinMode(2,INPUT);
pinMode(15,INPUT);
ESP.reset();
}
if (strcasecmp_P(Command, PSTR("Restart")) == 0)
ESP.restart();
if (strcasecmp_P(Command, PSTR("Erase")) == 0)
{
EraseFlash();
saveToRTC(0);
}
if (strcasecmp_P(Command, PSTR("Reset")) == 0)
ResetFactory();
if (strcasecmp_P(Command, PSTR("Save")) == 0)
SaveSettings();
if (strcasecmp_P(Command, PSTR("Delay")) == 0)
Settings.Delay = Par1;
if (strcasecmp_P(Command, PSTR("Debug")) == 0)
Settings.SerialLogLevel = Par1;
if (strcasecmp_P(Command, PSTR("IP")) == 0)
{
if (GetArgv(Line, TmpStr1, 2))
if (!str2ip(TmpStr1, Settings.IP))
Serial.println("?");
}
if (strcasecmp_P(Command, PSTR("Settings")) == 0)
{
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());
}
}
/********************************************************************************************\
* Get data from Serial Interface
\*********************************************************************************************/
#define INPUT_BUFFER_SIZE 128
byte SerialInByte;
int SerialInByteCounter = 0;
char InputBuffer_Serial[INPUT_BUFFER_SIZE + 2];
void serial()
{
while (Serial.available())
{
yield();
SerialInByte = Serial.read();
if (SerialInByte == 255) // binary data...
{
Serial.flush();
return;
}
if (isprint(SerialInByte))
{
if (SerialInByteCounter < INPUT_BUFFER_SIZE) // add char to string if it still fits
InputBuffer_Serial[SerialInByteCounter++] = SerialInByte;
}
if (SerialInByte == '\n')
{
InputBuffer_Serial[SerialInByteCounter] = 0; // serial data completed
Serial.write('>');
Serial.println(InputBuffer_Serial);
ExecuteCommand(InputBuffer_Serial);
SerialInByteCounter = 0;
InputBuffer_Serial[0] = 0; // serial data processed, clear buffer
}
}
}