GCode-Generator/main.py
Sélène Corbineau f06589562c Various bugfixes, moved svgtogcode to its own file
Aussi, on peut exercise toute la communication c'est trop chouette!!!
2025-01-15 01:13:41 +01:00

9 lines
242 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 X2.000 Y30.000 F1.000")