-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserial_cmd.cpp
More file actions
1934 lines (1760 loc) · 68.4 KB
/
serial_cmd.cpp
File metadata and controls
1934 lines (1760 loc) · 68.4 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
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
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
* TT Control, advanced sinusoidal control of multi-phase turntable motors
* Created by Ashley Cox at The Blind Man’s Workshop
* https://theblindmansworkshop.com
* No part of this code may be used or reproduced for commercial purposes without written permission and contractual agreement
* All external libraries and frameworks are the property of their respective authors and governed by their respective licenses
*/
#include "serial_cmd.h"
#include "ui.h"
#include "error_handler.h"
#include "hal.h"
#include "amp_monitor.h"
#include "network_manager.h"
#include "system_monitor.h"
extern UserInterface ui;
// --- CLI Registry ---
struct SettingItem {
String name;
std::function<String()> get;
std::function<void(String)> set;
};
std::vector<SettingItem> registry;
bool cliInitialized = false;
static const char* speedName(SpeedMode speed) {
if (speed == SPEED_33) return "33 RPM";
if (speed == SPEED_45) return "45 RPM";
return "78 RPM";
}
static const char* motorStateName() {
if (motor.isRelayTestMode()) return "RELAY TEST";
switch (motor.getState()) {
case STATE_STANDBY: return "STANDBY";
case STATE_STOPPED: return "STOPPED";
case STATE_STARTING: return "STARTING";
case STATE_RUNNING: return motor.isSpeedRamping() ? "RAMPING" : "RUNNING";
case STATE_STOPPING: return "BRAKING";
}
return "UNKNOWN";
}
static const char* brakeModeName(uint8_t mode) {
switch (mode) {
case BRAKE_OFF: return "Off";
case BRAKE_PULSE: return "Pulse";
case BRAKE_RAMP: return "Ramp";
case BRAKE_SOFT_STOP: return "Soft Stop";
}
return "Invalid";
}
static const char* filterName(uint8_t filter) {
switch (filter) {
case FILTER_NONE: return "None";
case FILTER_IIR: return "IIR";
case FILTER_FIR: return "FIR";
}
return "Invalid";
}
static const char* rampTypeName(uint8_t ramp) {
return ramp == RAMP_SCURVE ? "S-Curve" : "Linear";
}
static void printPresetList();
static void printSettingsDump();
static void handlePresetCommand(const String& input);
static void handleRelayTestCommand(const String& input);
static void handleWifiCommand(const String& input);
static void updateWifiSerialTasks();
static void printSafetyDiagnostic();
static int clampInt(int value, int minValue, int maxValue) {
if (value < minValue) return minValue;
if (value > maxValue) return maxValue;
return value;
}
static float clampFloat(float value, float minValue, float maxValue) {
if (value < minValue) return minValue;
if (value > maxValue) return maxValue;
return value;
}
static const char* onOffText(bool value) {
return value ? "ON" : "OFF";
}
static const char* yesNoText(bool value) {
return value ? "YES" : "NO";
}
static void printDiagCheck(const char* label, bool pass, bool& ok) {
Serial.print(pass ? "PASS: " : "FAIL: ");
Serial.println(label);
if (!pass) ok = false;
}
static const char* networkModeName(uint8_t mode) {
if (mode == NETWORK_MODE_STA) return "Station";
if (mode == NETWORK_MODE_STA_AP) return "Station + setup AP";
return "Setup AP";
}
static const char* networkStandbyModeName(uint8_t mode) {
return mode == NETWORK_STANDBY_ECO ? "Eco standby" : "Network standby";
}
static String ipBytesToString(const uint8_t bytes[4]) {
String out;
out.reserve(15);
out += String(bytes[0]);
out += ".";
out += String(bytes[1]);
out += ".";
out += String(bytes[2]);
out += ".";
out += String(bytes[3]);
return out;
}
static bool parseBoolValue(String value, bool& out) {
value.trim();
value.toLowerCase();
if (value == "1" || value == "on" || value == "yes" || value == "true" || value == "y") {
out = true;
return true;
}
if (value == "0" || value == "off" || value == "no" || value == "false" || value == "n") {
out = false;
return true;
}
return false;
}
static bool parseNetworkMode(String value, uint8_t& mode) {
value.trim();
value.toLowerCase();
value.replace("-", "_");
if (value == "0" || value == "ap" || value == "setup" || value == "setup_ap") {
mode = NETWORK_MODE_AP;
return true;
}
if (value == "1" || value == "sta" || value == "station" || value == "client") {
mode = NETWORK_MODE_STA;
return true;
}
if (value == "2" || value == "sta_ap" || value == "station_ap" || value == "station_setup" ||
value == "both") {
mode = NETWORK_MODE_STA_AP;
return true;
}
return false;
}
static bool parseNetworkStandbyMode(String value, uint8_t& mode) {
value.trim();
value.toLowerCase();
value.replace("-", "_");
if (value == "0" || value == "network" || value == "network_standby") {
mode = NETWORK_STANDBY_NETWORK;
return true;
}
if (value == "1" || value == "eco" || value == "eco_standby") {
mode = NETWORK_STANDBY_ECO;
return true;
}
return false;
}
static bool parseIpv4(const String& value, uint8_t out[4]) {
int start = 0;
for (int part = 0; part < 4; part++) {
int dot = value.indexOf('.', start);
if (part < 3 && dot < 0) return false;
if (part == 3 && dot >= 0) return false;
String piece = part < 3 ? value.substring(start, dot) : value.substring(start);
if (piece.length() == 0 || piece.length() > 3) return false;
for (size_t i = 0; i < piece.length(); i++) {
char c = piece.charAt(i);
if (c < '0' || c > '9') return false;
}
int parsed = piece.toInt();
if (parsed < 0 || parsed > 255) return false;
out[part] = (uint8_t)parsed;
start = dot + 1;
}
return true;
}
static bool copyConfigString(char* target, size_t targetSize, const String& value, const char* label) {
if (!target || targetSize == 0) return false;
if (value.length() >= targetSize) {
Serial.print(label);
Serial.print(" is too long. Maximum characters: ");
Serial.println(targetSize - 1);
return false;
}
strncpy(target, value.c_str(), targetSize - 1);
target[targetSize - 1] = 0;
return true;
}
static void parseCommandArgs(const String& text, std::vector<String>& args) {
args.clear();
String current;
bool tokenActive = false;
bool inQuote = false;
char quoteChar = 0;
for (size_t i = 0; i < text.length(); i++) {
char c = text.charAt(i);
if (inQuote) {
if (c == quoteChar) {
inQuote = false;
} else if (c == '\\' && i + 1 < text.length()) {
i++;
current += text.charAt(i);
tokenActive = true;
} else {
current += c;
tokenActive = true;
}
continue;
}
if (c == '"' || c == '\'') {
inQuote = true;
quoteChar = c;
tokenActive = true;
} else if (c == ' ' || c == '\t') {
if (tokenActive) {
args.push_back(current);
current = "";
tokenActive = false;
}
} else {
current += c;
tokenActive = true;
}
}
if (tokenActive) {
args.push_back(current);
}
}
enum WifiWizardStep : uint8_t {
WIFI_WIZARD_IDLE = 0,
WIFI_WIZARD_MODE,
WIFI_WIZARD_SCAN_CHOICE,
WIFI_WIZARD_SCAN_WAIT,
WIFI_WIZARD_SSID,
WIFI_WIZARD_HIDDEN,
WIFI_WIZARD_PASSWORD,
WIFI_WIZARD_DHCP,
WIFI_WIZARD_STATIC_IP,
WIFI_WIZARD_GATEWAY,
WIFI_WIZARD_SUBNET,
WIFI_WIZARD_DNS,
WIFI_WIZARD_HOSTNAME,
WIFI_WIZARD_AP_FALLBACK,
WIFI_WIZARD_AP_SSID,
WIFI_WIZARD_AP_PASSWORD,
WIFI_WIZARD_AP_CHANNEL,
WIFI_WIZARD_CONFIRM
};
static const uint8_t WIFI_WIZARD_MAX_SCAN_RESULTS = 12;
static bool wifiWizardActive = false;
static WifiWizardStep wifiWizardStep = WIFI_WIZARD_IDLE;
static NetworkConfig wifiWizardConfig;
static String wifiWizardScanSsids[WIFI_WIZARD_MAX_SCAN_RESULTS];
static uint8_t wifiWizardScanCount = 0;
static bool wifiScanActive = false;
static bool wifiScanForWizard = false;
static uint32_t wifiScanStartedMs = 0;
static bool wizardNeedsStation() {
return wifiWizardConfig.mode == NETWORK_MODE_STA || wifiWizardConfig.mode == NETWORK_MODE_STA_AP;
}
static bool wizardNeedsApConfig() {
return wifiWizardConfig.mode == NETWORK_MODE_AP ||
wifiWizardConfig.mode == NETWORK_MODE_STA_AP ||
(wifiWizardConfig.mode == NETWORK_MODE_STA && wifiWizardConfig.apFallback);
}
static void printWifiConfigSummary(const NetworkConfig& cfg) {
Serial.print("Enabled: ");
Serial.println(onOffText(cfg.enabled));
Serial.print("Mode: ");
Serial.println(networkModeName(cfg.mode));
Serial.print("Standby: ");
Serial.println(networkStandbyModeName(cfg.standbyMode));
Serial.print("Hostname: ");
Serial.println(cfg.hostname);
Serial.print("Station SSID: ");
Serial.println(cfg.ssid[0] ? cfg.ssid : "(not set)");
Serial.print("Hidden SSID: ");
Serial.println(onOffText(cfg.hiddenSsid));
Serial.print("Station password: ");
Serial.println(cfg.password[0] ? "(saved)" : "(open/none)");
Serial.print("DHCP: ");
Serial.println(onOffText(cfg.dhcp));
if (!cfg.dhcp) {
Serial.print("Static IP: ");
Serial.println(ipBytesToString(cfg.staticIp));
Serial.print("Gateway: ");
Serial.println(ipBytesToString(cfg.gateway));
Serial.print("Subnet: ");
Serial.println(ipBytesToString(cfg.subnet));
Serial.print("DNS: ");
Serial.println(ipBytesToString(cfg.dns));
}
Serial.print("AP fallback: ");
Serial.println(onOffText(cfg.apFallback));
Serial.print("Setup AP SSID: ");
Serial.println(cfg.apSsid[0] ? cfg.apSsid : "(not set)");
Serial.print("Setup AP password: ");
Serial.println(cfg.apPassword[0] ? "(saved)" : "(open)");
Serial.print("Setup AP channel: ");
Serial.println(cfg.apChannel);
}
static void promptWifiWizardStep();
static void setWifiWizardStep(WifiWizardStep step) {
wifiWizardStep = step;
promptWifiWizardStep();
}
static void setWizardStepAfterStationConfig() {
if (wizardNeedsStation()) {
setWifiWizardStep(WIFI_WIZARD_SCAN_CHOICE);
} else {
setWifiWizardStep(WIFI_WIZARD_HOSTNAME);
}
}
static void setWizardStepAfterDhcpChoice() {
if (wifiWizardConfig.dhcp) {
setWifiWizardStep(WIFI_WIZARD_HOSTNAME);
} else {
setWifiWizardStep(WIFI_WIZARD_STATIC_IP);
}
}
static void setWizardStepAfterHostname() {
if (wifiWizardConfig.mode == NETWORK_MODE_STA) {
setWifiWizardStep(WIFI_WIZARD_AP_FALLBACK);
} else if (wizardNeedsApConfig()) {
setWifiWizardStep(WIFI_WIZARD_AP_SSID);
} else {
setWifiWizardStep(WIFI_WIZARD_CONFIRM);
}
}
static void setWizardStepAfterFallback() {
if (wizardNeedsApConfig()) {
setWifiWizardStep(WIFI_WIZARD_AP_SSID);
} else {
setWifiWizardStep(WIFI_WIZARD_CONFIRM);
}
}
static void promptWifiWizardStep() {
if (!wifiWizardActive) return;
switch (wifiWizardStep) {
case WIFI_WIZARD_MODE:
Serial.println();
Serial.println("Wi-Fi setup wizard. Type 'cancel' at any prompt to exit.");
Serial.println("Choose network mode:");
Serial.println(" 1 = Station + setup AP");
Serial.println(" 2 = Station only");
Serial.println(" 3 = Setup AP only");
Serial.print("Mode [");
Serial.print(networkModeName(wifiWizardConfig.mode));
Serial.println("]:");
break;
case WIFI_WIZARD_SCAN_CHOICE:
Serial.print("Scan for nearby Wi-Fi networks? [");
Serial.print(wifiWizardScanCount ? "n" : "y");
Serial.println("]:");
break;
case WIFI_WIZARD_SCAN_WAIT:
Serial.println("Scanning. Results will print when ready.");
break;
case WIFI_WIZARD_SSID:
if (wifiWizardScanCount > 0) {
Serial.println("Enter a network number from the scan list, or type the SSID manually.");
}
Serial.print("Station SSID [");
Serial.print(wifiWizardConfig.ssid[0] ? wifiWizardConfig.ssid : "required");
Serial.println("]:");
break;
case WIFI_WIZARD_PASSWORD:
Serial.println("Station password. Leave blank for an open network, or enter '-' to keep the saved password.");
Serial.print("Password [");
Serial.print(wifiWizardConfig.password[0] ? "saved" : "open");
Serial.println("]:");
break;
case WIFI_WIZARD_HIDDEN:
Serial.print("Is this a hidden SSID? [");
Serial.print(wifiWizardConfig.hiddenSsid ? "y" : "n");
Serial.println("]:");
break;
case WIFI_WIZARD_DHCP:
Serial.print("Use DHCP? [");
Serial.print(wifiWizardConfig.dhcp ? "y" : "n");
Serial.println("]:");
break;
case WIFI_WIZARD_STATIC_IP:
Serial.print("Static IP [");
Serial.print(ipBytesToString(wifiWizardConfig.staticIp));
Serial.println("]:");
break;
case WIFI_WIZARD_GATEWAY:
Serial.print("Gateway [");
Serial.print(ipBytesToString(wifiWizardConfig.gateway));
Serial.println("]:");
break;
case WIFI_WIZARD_SUBNET:
Serial.print("Subnet [");
Serial.print(ipBytesToString(wifiWizardConfig.subnet));
Serial.println("]:");
break;
case WIFI_WIZARD_DNS:
Serial.print("DNS [");
Serial.print(ipBytesToString(wifiWizardConfig.dns));
Serial.println("]:");
break;
case WIFI_WIZARD_HOSTNAME:
Serial.print("Hostname [");
Serial.print(wifiWizardConfig.hostname[0] ? wifiWizardConfig.hostname : NETWORK_DEFAULT_HOSTNAME);
Serial.println("]:");
break;
case WIFI_WIZARD_AP_FALLBACK:
Serial.print("Start setup AP if station connection fails? [");
Serial.print(wifiWizardConfig.apFallback ? "y" : "n");
Serial.println("]:");
break;
case WIFI_WIZARD_AP_SSID:
Serial.print("Setup AP SSID [");
Serial.print(wifiWizardConfig.apSsid[0] ? wifiWizardConfig.apSsid : NETWORK_DEFAULT_AP_SSID);
Serial.println("]:");
break;
case WIFI_WIZARD_AP_PASSWORD:
Serial.println("Setup AP password. Leave blank for an open setup AP, or enter '-' to keep the saved password.");
Serial.print("Setup AP password [");
Serial.print(wifiWizardConfig.apPassword[0] ? "saved" : "open");
Serial.println("]:");
break;
case WIFI_WIZARD_AP_CHANNEL:
Serial.print("Setup AP channel 1-13 [");
Serial.print(wifiWizardConfig.apChannel);
Serial.println("]:");
break;
case WIFI_WIZARD_CONFIRM:
Serial.println();
Serial.println("--- Wi-Fi Wizard Summary ---");
printWifiConfigSummary(wifiWizardConfig);
Serial.println("----------------------------");
Serial.println("Save these settings and reconnect now? [y/n]:");
break;
default:
break;
}
}
static void startWifiWizard() {
if (!networkManager.isAvailable()) {
Serial.println("Network support is not enabled in this build.");
return;
}
wifiWizardConfig = networkManager.getConfig();
wifiWizardConfig.enabled = true;
if (wifiWizardConfig.mode == NETWORK_MODE_AP && wifiWizardConfig.ssid[0] == 0) {
wifiWizardConfig.mode = NETWORK_MODE_STA_AP;
}
if (wifiWizardConfig.mode > NETWORK_MODE_STA_AP) wifiWizardConfig.mode = NETWORK_MODE_STA_AP;
if (wifiWizardConfig.apChannel < 1 || wifiWizardConfig.apChannel > 13) {
wifiWizardConfig.apChannel = NETWORK_DEFAULT_AP_CHANNEL;
}
if (wifiWizardConfig.hostname[0] == 0) {
copyConfigString(wifiWizardConfig.hostname, sizeof(wifiWizardConfig.hostname), NETWORK_DEFAULT_HOSTNAME, "Hostname");
}
if (wifiWizardConfig.apSsid[0] == 0) {
copyConfigString(wifiWizardConfig.apSsid, sizeof(wifiWizardConfig.apSsid), NETWORK_DEFAULT_AP_SSID, "Setup AP SSID");
}
wifiWizardScanCount = 0;
wifiWizardActive = true;
setWifiWizardStep(WIFI_WIZARD_MODE);
}
static bool startWifiScan(bool forWizard) {
#if NETWORK_ENABLE
if (!networkManager.isAvailable()) {
Serial.println("Network support is not enabled in this build.");
return false;
}
if (wifiScanActive) {
Serial.println("A Wi-Fi scan is already in progress.");
return false;
}
wifiScanForWizard = forWizard;
wifiScanActive = true;
wifiScanStartedMs = millis();
wifiWizardScanCount = 0;
WiFi.scanDelete();
int result = WiFi.scanNetworks(true);
if (result == -2) {
wifiScanActive = false;
Serial.println("Unable to start Wi-Fi scan.");
return false;
}
Serial.println("Scanning for Wi-Fi networks...");
return true;
#else
(void)forWizard;
Serial.println("Network support is not enabled in this build.");
return false;
#endif
}
static void finishWifiScan(int count) {
#if NETWORK_ENABLE
wifiScanActive = false;
wifiWizardScanCount = 0;
Serial.println("--- Wi-Fi Scan Results ---");
if (count <= 0) {
Serial.println("No networks found.");
} else {
for (int i = 0; i < count && wifiWizardScanCount < WIFI_WIZARD_MAX_SCAN_RESULTS; i++) {
String ssid = WiFi.SSID(i);
if (ssid.length() == 0) continue;
bool duplicate = false;
for (uint8_t j = 0; j < wifiWizardScanCount; j++) {
if (wifiWizardScanSsids[j] == ssid) {
duplicate = true;
break;
}
}
if (duplicate) continue;
wifiWizardScanSsids[wifiWizardScanCount] = ssid;
Serial.print(wifiWizardScanCount + 1);
Serial.print(": ");
Serial.print(ssid);
Serial.print(" (");
Serial.print(WiFi.RSSI(i));
Serial.print(" dBm, channel ");
Serial.print(WiFi.channel(i));
Serial.println(")");
wifiWizardScanCount++;
}
if (wifiWizardScanCount == 0) {
Serial.println("No named networks found.");
}
}
Serial.println("-------------------------");
WiFi.scanDelete();
if (wifiScanForWizard && wifiWizardActive && wifiWizardStep == WIFI_WIZARD_SCAN_WAIT) {
setWifiWizardStep(WIFI_WIZARD_SSID);
}
wifiScanForWizard = false;
#else
(void)count;
#endif
}
static void updateWifiSerialTasks() {
#if NETWORK_ENABLE
if (!wifiScanActive) return;
int count = WiFi.scanComplete();
if (count >= 0) {
finishWifiScan(count);
return;
}
if (millis() - wifiScanStartedMs > 15000) {
wifiScanActive = false;
WiFi.scanDelete();
Serial.println("Wi-Fi scan timed out.");
if (wifiScanForWizard && wifiWizardActive && wifiWizardStep == WIFI_WIZARD_SCAN_WAIT) {
wifiScanForWizard = false;
setWifiWizardStep(WIFI_WIZARD_SSID);
}
}
#endif
}
static void handleWifiWizardInput(String input) {
input.trim();
String lowered = input;
lowered.toLowerCase();
if (lowered == "cancel" || lowered == "quit" || lowered == "exit") {
wifiWizardActive = false;
wifiWizardStep = WIFI_WIZARD_IDLE;
Serial.println("Wi-Fi setup wizard cancelled.");
return;
}
bool parsedBool = false;
uint8_t parsedMode = NETWORK_MODE_STA_AP;
uint8_t parsedIp[4];
switch (wifiWizardStep) {
case WIFI_WIZARD_MODE:
if (input.length() > 0) {
if (input == "1") {
parsedMode = NETWORK_MODE_STA_AP;
} else if (input == "2") {
parsedMode = NETWORK_MODE_STA;
} else if (input == "3") {
parsedMode = NETWORK_MODE_AP;
} else if (!parseNetworkMode(input, parsedMode)) {
Serial.println("Enter 1, 2, 3, or a mode name.");
promptWifiWizardStep();
return;
}
wifiWizardConfig.mode = parsedMode;
}
wifiWizardConfig.enabled = true;
if (wifiWizardConfig.mode == NETWORK_MODE_STA_AP) {
wifiWizardConfig.apFallback = true;
}
setWizardStepAfterStationConfig();
break;
case WIFI_WIZARD_SCAN_CHOICE:
if (input.length() == 0) {
parsedBool = wifiWizardScanCount == 0;
} else if (!parseBoolValue(input, parsedBool)) {
Serial.println("Enter y or n.");
promptWifiWizardStep();
return;
}
if (parsedBool) {
wifiWizardStep = WIFI_WIZARD_SCAN_WAIT;
if (!startWifiScan(true)) {
setWifiWizardStep(WIFI_WIZARD_SSID);
} else {
promptWifiWizardStep();
}
} else {
setWifiWizardStep(WIFI_WIZARD_SSID);
}
break;
case WIFI_WIZARD_SCAN_WAIT:
Serial.println("Scan is still running. Type 'cancel' to exit, or wait for results.");
break;
case WIFI_WIZARD_SSID:
if (input.length() == 0) {
if (wifiWizardConfig.ssid[0] == 0) {
Serial.println("Station SSID is required for station mode.");
promptWifiWizardStep();
return;
}
} else {
int selected = input.toInt();
bool isNumber = selected > 0 && selected <= wifiWizardScanCount && input == String(selected);
String ssid = isNumber ? wifiWizardScanSsids[selected - 1] : input;
if (!copyConfigString(wifiWizardConfig.ssid, sizeof(wifiWizardConfig.ssid), ssid, "Station SSID")) {
promptWifiWizardStep();
return;
}
if (isNumber) wifiWizardConfig.hiddenSsid = false;
}
setWifiWizardStep(WIFI_WIZARD_HIDDEN);
break;
case WIFI_WIZARD_HIDDEN:
if (input.length() > 0) {
if (!parseBoolValue(input, parsedBool)) {
Serial.println("Enter y or n.");
promptWifiWizardStep();
return;
}
wifiWizardConfig.hiddenSsid = parsedBool;
}
setWifiWizardStep(WIFI_WIZARD_PASSWORD);
break;
case WIFI_WIZARD_PASSWORD:
if (input != "-") {
if (!copyConfigString(wifiWizardConfig.password, sizeof(wifiWizardConfig.password), input, "Station password")) {
promptWifiWizardStep();
return;
}
}
setWifiWizardStep(WIFI_WIZARD_DHCP);
break;
case WIFI_WIZARD_DHCP:
if (input.length() > 0) {
if (!parseBoolValue(input, parsedBool)) {
Serial.println("Enter y or n.");
promptWifiWizardStep();
return;
}
wifiWizardConfig.dhcp = parsedBool;
}
setWizardStepAfterDhcpChoice();
break;
case WIFI_WIZARD_STATIC_IP:
if (input.length() > 0) {
if (!parseIpv4(input, parsedIp)) {
Serial.println("Enter a valid IPv4 address.");
promptWifiWizardStep();
return;
}
memcpy(wifiWizardConfig.staticIp, parsedIp, sizeof(wifiWizardConfig.staticIp));
}
setWifiWizardStep(WIFI_WIZARD_GATEWAY);
break;
case WIFI_WIZARD_GATEWAY:
if (input.length() > 0) {
if (!parseIpv4(input, parsedIp)) {
Serial.println("Enter a valid IPv4 address.");
promptWifiWizardStep();
return;
}
memcpy(wifiWizardConfig.gateway, parsedIp, sizeof(wifiWizardConfig.gateway));
}
setWifiWizardStep(WIFI_WIZARD_SUBNET);
break;
case WIFI_WIZARD_SUBNET:
if (input.length() > 0) {
if (!parseIpv4(input, parsedIp)) {
Serial.println("Enter a valid IPv4 address.");
promptWifiWizardStep();
return;
}
memcpy(wifiWizardConfig.subnet, parsedIp, sizeof(wifiWizardConfig.subnet));
}
setWifiWizardStep(WIFI_WIZARD_DNS);
break;
case WIFI_WIZARD_DNS:
if (input.length() > 0) {
if (!parseIpv4(input, parsedIp)) {
Serial.println("Enter a valid IPv4 address.");
promptWifiWizardStep();
return;
}
memcpy(wifiWizardConfig.dns, parsedIp, sizeof(wifiWizardConfig.dns));
}
setWifiWizardStep(WIFI_WIZARD_HOSTNAME);
break;
case WIFI_WIZARD_HOSTNAME:
if (input.length() > 0) {
if (!copyConfigString(wifiWizardConfig.hostname, sizeof(wifiWizardConfig.hostname), input, "Hostname")) {
promptWifiWizardStep();
return;
}
} else if (wifiWizardConfig.hostname[0] == 0) {
copyConfigString(wifiWizardConfig.hostname, sizeof(wifiWizardConfig.hostname), NETWORK_DEFAULT_HOSTNAME, "Hostname");
}
setWizardStepAfterHostname();
break;
case WIFI_WIZARD_AP_FALLBACK:
if (input.length() > 0) {
if (!parseBoolValue(input, parsedBool)) {
Serial.println("Enter y or n.");
promptWifiWizardStep();
return;
}
wifiWizardConfig.apFallback = parsedBool;
}
setWizardStepAfterFallback();
break;
case WIFI_WIZARD_AP_SSID:
if (input.length() > 0) {
if (!copyConfigString(wifiWizardConfig.apSsid, sizeof(wifiWizardConfig.apSsid), input, "Setup AP SSID")) {
promptWifiWizardStep();
return;
}
} else if (wifiWizardConfig.apSsid[0] == 0) {
copyConfigString(wifiWizardConfig.apSsid, sizeof(wifiWizardConfig.apSsid), NETWORK_DEFAULT_AP_SSID, "Setup AP SSID");
}
setWifiWizardStep(WIFI_WIZARD_AP_PASSWORD);
break;
case WIFI_WIZARD_AP_PASSWORD:
if (input != "-") {
if (input.length() > 0 && input.length() < 8) {
Serial.println("Setup AP password must be at least 8 characters, or blank for open setup AP.");
promptWifiWizardStep();
return;
}
if (!copyConfigString(wifiWizardConfig.apPassword, sizeof(wifiWizardConfig.apPassword), input, "Setup AP password")) {
promptWifiWizardStep();
return;
}
}
setWifiWizardStep(WIFI_WIZARD_AP_CHANNEL);
break;
case WIFI_WIZARD_AP_CHANNEL:
if (input.length() > 0) {
int channel = input.toInt();
if (channel < 1 || channel > 13) {
Serial.println("AP channel must be 1 through 13.");
promptWifiWizardStep();
return;
}
wifiWizardConfig.apChannel = (uint8_t)channel;
}
setWifiWizardStep(WIFI_WIZARD_CONFIRM);
break;
case WIFI_WIZARD_CONFIRM:
if (!parseBoolValue(input, parsedBool)) {
Serial.println("Enter y to save, or n to cancel.");
promptWifiWizardStep();
return;
}
if (parsedBool) {
NetworkConfig& cfg = networkManager.getConfig();
cfg = wifiWizardConfig;
networkManager.save();
networkManager.restart();
wifiWizardActive = false;
wifiWizardStep = WIFI_WIZARD_IDLE;
Serial.println("Network settings saved. Reconnecting with the new configuration.");
} else {
wifiWizardActive = false;
wifiWizardStep = WIFI_WIZARD_IDLE;
Serial.println("Wi-Fi setup wizard cancelled. No changes saved.");
}
break;
default:
wifiWizardActive = false;
wifiWizardStep = WIFI_WIZARD_IDLE;
break;
}
}
void initCLI() {
if (cliInitialized) return;
// --- Global Settings ---
registry.push_back({ "brightness",
[]() { return String(settings.get().displayBrightness); },
[](String v) { settings.get().displayBrightness = (uint8_t)clampInt(v.toInt(), 0, 255); }
});
registry.push_back({ "ramp",
[]() { return String(settings.get().rampType); },
[](String v) { settings.get().rampType = (uint8_t)clampInt(v.toInt(), 0, 1); }
});
registry.push_back({ "pitch_step",
[]() { return String(settings.get().pitchStepSize); },
[](String v) { settings.get().pitchStepSize = clampFloat(v.toFloat(), 0.01, 1.0); }
});
registry.push_back({ "rev_enc",
[]() { return String(settings.get().reverseEncoder); },
[](String v) { settings.get().reverseEncoder = (v == "1" || v == "true"); }
});
registry.push_back({ "saver_mode",
[]() { return String(settings.get().screensaverMode); },
[](String v) { settings.get().screensaverMode = (uint8_t)clampInt(v.toInt(), 0, 2); }
});
registry.push_back({ "show_cpu",
[]() { return String(settings.get().showCpuDashboard); },
[](String v) { settings.get().showCpuDashboard = (v == "1" || v == "true"); }
});
registry.push_back({ "show_memory",
[]() { return String(settings.get().showMemoryDashboard); },
[](String v) { settings.get().showMemoryDashboard = (v == "1" || v == "true"); }
});
registry.push_back({ "show_flash",
[]() { return String(settings.get().showFlashDashboard); },
[](String v) { settings.get().showFlashDashboard = (v == "1" || v == "true"); }
});
registry.push_back({ "phase_mode",
[]() { return String(settings.get().phaseMode); },
[](String v) {
settings.get().phaseMode = (uint8_t)clampInt(v.toInt(), 1, MAX_PHASE_MODE);
motor.applySettings();
}
});
registry.push_back({ "max_amp",
[]() { return String(settings.get().maxAmplitude); },
[](String v) { settings.get().maxAmplitude = (uint8_t)clampInt(v.toInt(), 0, 100); }
});
#if AMP_MONITOR_ENABLE
registry.push_back({ "amp_warn",
[]() { return String(settings.get().ampTempWarnC); },
[](String v) {
settings.get().ampTempWarnC = clampFloat(v.toFloat(), AMP_TEMP_MIN_C, AMP_TEMP_MAX_C);
if (settings.get().ampTempShutdownC <= settings.get().ampTempWarnC) {
settings.get().ampTempShutdownC = settings.get().ampTempWarnC + AMP_TEMP_MIN_SHUTDOWN_MARGIN_C;
}
settings.normalize();
}
});
registry.push_back({ "amp_shutdown",
[]() { return String(settings.get().ampTempShutdownC); },
[](String v) {
settings.get().ampTempShutdownC = clampFloat(v.toFloat(), AMP_TEMP_MIN_C, AMP_TEMP_MAX_C);
if (settings.get().ampTempWarnC >= settings.get().ampTempShutdownC) {
settings.get().ampTempWarnC = settings.get().ampTempShutdownC - AMP_TEMP_MIN_SHUTDOWN_MARGIN_C;
}
settings.normalize();
}
});
#endif
registry.push_back({ "smooth_switch",
[]() { return String(settings.get().smoothSwitching); },
[](String v) { settings.get().smoothSwitching = (v == "1" || v == "true"); }
});
registry.push_back({ "switch_ramp",
[]() { return String(settings.get().switchRampDuration); },
[](String v) { settings.get().switchRampDuration = (uint8_t)clampInt(v.toInt(), 1, 5); }
});
registry.push_back({ "brake_mode",
[]() { return String(settings.get().brakeMode); },
[](String v) { settings.get().brakeMode = (uint8_t)clampInt(v.toInt(), 0, 3); }
});
registry.push_back({ "brake_duration",
[]() { return String(settings.get().brakeDuration); },
[](String v) { settings.get().brakeDuration = clampFloat(v.toFloat(), 0.0, 10.0); }
});
registry.push_back({ "brake_pulse_gap",
[]() { return String(settings.get().brakePulseGap); },
[](String v) { settings.get().brakePulseGap = clampFloat(v.toFloat(), 0.1, 2.0); }
});
registry.push_back({ "brake_start_freq",
[]() { return String(settings.get().brakeStartFreq); },
[](String v) { settings.get().brakeStartFreq = clampFloat(v.toFloat(), 10.0, 200.0); }
});
registry.push_back({ "brake_stop_freq",
[]() { return String(settings.get().brakeStopFreq); },
[](String v) { settings.get().brakeStopFreq = clampFloat(v.toFloat(), 0.0, 50.0); }
});
registry.push_back({ "brake_cutoff",
[]() { return String(settings.get().softStopCutoff); },
[](String v) { settings.get().softStopCutoff = clampFloat(v.toFloat(), 0.0, 50.0); }
});
registry.push_back({ "relay_active_high",
[]() { return String(settings.get().relayActiveHigh); },
[](String v) { settings.get().relayActiveHigh = (v == "1" || v == "true"); }
});
registry.push_back({ "relay_delay",
[]() { return String(settings.get().powerOnRelayDelay); },
[](String v) { settings.get().powerOnRelayDelay = (uint8_t)clampInt(v.toInt(), 0, 10); }
});
// --- Current Speed Settings ---
// Note: These access the *currently active* speed settings
registry.push_back({ "freq",
[]() { return String(settings.getCurrentSpeedSettings().frequency); },
[](String v) {
SpeedSettings& speed = settings.getCurrentSpeedSettings();
speed.frequency = clampFloat(v.toFloat(), speed.minFrequency, speed.maxFrequency);
speed.frequency = clampFloat(speed.frequency, MIN_OUTPUT_FREQUENCY_HZ, MAX_OUTPUT_FREQUENCY_HZ);
motor.applySettings();
}
});
registry.push_back({ "phase1",
[]() { return String(settings.getCurrentSpeedSettings().phaseOffset[0]); },
[](String v) {
settings.getCurrentSpeedSettings().phaseOffset[0] = clampFloat(v.toFloat(), -360.0, 360.0);
motor.applySettings();