Structural-Color-AE-NCSA / DevicesManager

0 stars 0 forks source link

[PCP3] insert M400 by default when user click prime on PCP3 terminal #23

Closed bingzhang closed 4 weeks ago

bingzhang commented 3 months ago

I and @JAlom-sketch found out and confirmed that GCode M400 can synchronize the device movements and output from PCP3 terminal.

We need to insert M400 by default when the user clicks prime on PCP3 terminal.

e.g.,

axes.move("G0 Z10")

We guess it will insert M400 commands for the printers.

axes.sendCmd("M400") axes.move("G0 Z10") axes.sendCmd("M400") tool.setValue("10")

We suspect that in the PCP3 Code, there will be a .py or function to parse this input file. This function will analyze each line from this file.

bingzhang commented 4 weeks ago

it is done.