fix reverse controll

This commit is contained in:
unknown 2026-01-23 00:06:12 +03:00
parent 1f1683fe2c
commit 8899ef314a

View File

@ -17,8 +17,8 @@ bool controllerMove(const String& cmd) {
if (cmd == "FWD") actuatorsForward();
else if (cmd == "BACK") actuatorsBack();
else if (cmd == "LEFT") actuatorsLeft();
else if (cmd == "RIGHT") actuatorsRight();
else if (cmd == "RIGHT") actuatorsLeft();
else if (cmd == "LEFT") actuatorsRight();
else return false;
return true;