Upgrade pathing

This commit is contained in:
osiu97
2026-07-08 17:52:38 +02:00
parent a912d23b7c
commit e1416f6979
6 changed files with 52 additions and 16 deletions
+8
View File
@@ -185,6 +185,14 @@ void parseCommand(const String &cmd) {
sendPosition();
return;
}
// ZEROALL
if (cmd == "ZEROALL") {
stepper1.setCurrentPosition(1024);
stepper2.setCurrentPosition(0);
Serial.println("[SYS] Position blindly reset to home (1024, 0).");
sendPosition();
return;
}
// POS explicit position request
if (cmd == "POS") {
sendPosition();