This commit is contained in:
Chenwenxuan
2024-03-06 14:54:30 +08:00
commit edac2715f0
1525 changed files with 809982 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
#include "machcode.h"
MachCode::MachCode()
{
}
QString MachCode::getCode()
{
QString code("\n");
code+=
"ENABLE (Z)\n"
"VEL(Z) = 2.000\n"
"ACC(Z) = 20.00\n"
"DEC(Z) = 20.00\n"
"JERK(Z) = 200.0\n"
"KDEC(Z) = 200.0\n"
"PTP/e Z,2.2\n"
"runF = 1\n"
"STOP";
return code;
}