-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
239 lines (207 loc) · 4.2 KB
/
Copy pathmain.cpp
File metadata and controls
239 lines (207 loc) · 4.2 KB
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
#include <Arduino.h>
#include <Preferences.h>
Preferences preferences;
static const uint32_t SERIAL_BAUD = 115200;
#ifdef RELEASE
static const char *NVS_NAMESPACE = "lumenlab";
#else
static const char *NVS_NAMESPACE = "lumenlab-dev";
#endif
String inputBuffer;
void processCommand(const String &cmd);
void writeKeyValue(const String &key, const String &value);
void getKeyValue(const String &key);
void dumpAll();
void clearAll();
void sendOK();
void sendError(const String &msg);
void printMenu();
void setup()
{
Serial.begin(SERIAL_BAUD);
preferences.begin(NVS_NAMESPACE, false);
while (!Serial)
{
delay(10);
}
printMenu();
}
void loop()
{
while (Serial.available())
{
char c = Serial.read();
if (c == '\n')
{
inputBuffer.trim();
if (inputBuffer.length() > 0)
{
processCommand(inputBuffer);
}
inputBuffer = "";
}
else
{
inputBuffer += c;
}
}
}
void processCommand(const String &cmd)
{
if (cmd.startsWith("SET "))
{
int equalsIndex = cmd.indexOf('=');
if (equalsIndex < 0)
{
sendError("INVALID_FORMAT");
return;
}
String key = cmd.substring(4, equalsIndex);
String value = cmd.substring(equalsIndex + 1);
key.trim();
value.trim();
writeKeyValue(key, value);
}
else if (cmd.startsWith("GET "))
{
String key = cmd.substring(4);
key.trim();
getKeyValue(key);
}
else if (cmd == "GETALL")
{
dumpAll();
}
else if (cmd == "CLEAR")
{
clearAll();
}
else if (cmd == "REBOOT")
{
sendOK();
delay(100);
ESP.restart();
}
else if (cmd == "HELP")
{
printMenu();
}
else
{
sendError("UNKNOWN_COMMAND");
}
}
void writeKeyValue(const String &key, const String &value)
{
if (!preferences.begin(NVS_NAMESPACE, false))
{
sendError("NVS_BEGIN_FAILED");
return;
}
size_t written = preferences.putString(key.c_str(), value);
preferences.end();
if (written > 0)
{
Serial.print("Wrote to NVS: ");
Serial.print(key);
Serial.print("=");
Serial.println(value);
sendOK();
}
else
sendError("WRITE_FAILED");
}
void getKeyValue(const String &key)
{
preferences.begin(NVS_NAMESPACE, true);
String value = preferences.getString(key.c_str(), "__NOT_FOUND__");
preferences.end();
if (value == "__NOT_FOUND__")
{
sendError("NOT_FOUND");
return;
}
Serial.print(key);
Serial.print("=");
Serial.println(value);
sendOK();
}
void dumpAll()
{
preferences.begin(NVS_NAMESPACE, true);
size_t count = preferences.freeEntries();
Serial.println("BEGIN_DUMP");
const char *knownKeys[] = {
"macAddress",
"numLeds",
"serialBaud",
"boundary_1",
"boundary_2",
"boundary_3"};
for (auto key : knownKeys)
{
if (!preferences.isKey(key))
{
Serial.print(key);
Serial.println(" is not in memory.");
continue;
}
String value = preferences.getString(key, "");
if (value.length() > 0)
{
Serial.print(key);
Serial.print("=");
Serial.println(value);
}
}
const char *knownHighScores[] = {
"high_recall",
"high_phase"};
for (auto key : knownHighScores)
{
if (!preferences.isKey(key))
{
Serial.print(key);
Serial.println(" is not in memory.");
continue;
}
auto value = preferences.getString(key, "0");
Serial.print(key);
Serial.print("=");
Serial.println(value);
}
preferences.end();
Serial.println("END_DUMP");
sendOK();
}
void clearAll()
{
preferences.begin(NVS_NAMESPACE, false);
bool result = preferences.clear();
preferences.end();
if (result)
sendOK();
else
sendError("CLEAR_FAILED");
}
void sendOK()
{
Serial.println("OK");
}
void sendError(const String &msg)
{
Serial.print("ERROR:");
Serial.println(msg);
}
void printMenu()
{
Serial.println();
Serial.println("=================================");
Serial.println("LUMENLAB PROVISIONING MODE");
char strBuff[64];
snprintf(strBuff, sizeof(strBuff), "Namespace: %s", NVS_NAMESPACE);
Serial.println(strBuff);
Serial.println("Commands: SET, GET, GETALL, CLEAR, REBOOT, HELP");
Serial.println("=================================");
Serial.println("READY");
}