13 lines
329 B
Python
13 lines
329 B
Python
import hardware as hw
|
|
import controller as ctl
|
|
import GCode_Interpreterdc as gci
|
|
|
|
b = "socket.sock"
|
|
sh = hw.SimuHardware(b)
|
|
ctrl= ctl.DummyController()
|
|
gtm1 = gci.GCodeToMotors(ctrl, sh)
|
|
gtm1.instruction_converter("G0 X25.000 Y25.000 F0.0500")
|
|
gtm1.instruction_converter("G0 X50.000 Y30.000 F0.0500")
|
|
|
|
while(True):
|
|
print("mdr")
|