Added JuankaEmika to sas_robot_driver_franka

This commit is contained in:
Juancho
2023-06-27 09:47:32 +09:00
parent b18be8435d
commit dcfcf8bced
4 changed files with 1769 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
//w.resize(1200,1200);
w.show();
return a.exec();
}