add the move event in the main

This commit is contained in:
ackimixs
2024-01-31 23:13:33 +01:00
parent 505ea5c6fd
commit a6877fb4a3

View File

@@ -18,6 +18,11 @@ int main(int argc, char* argv[]) {
qInfo() << "deplier";
});
MainWindow::connect(main, &MainWindow::moveRobot, [=](int x, int y, int theta)
{
qInfo() << "move" << x << y << theta;
});
main->show();
return QApplication::exec();